]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-3883 can you see if this helps
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 8 Feb 2012 22:52:13 +0000 (16:52 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 8 Feb 2012 22:52:13 +0000 (16:52 -0600)
src/switch_caller.c

index 9382efd58c6dddc6e415ca2b06a2f6dbf2c37678..715ab85486d1d70b9c38f9f6e2beb571c591a7fa 100644 (file)
@@ -137,6 +137,13 @@ SWITCH_DECLARE(switch_caller_profile_t *) switch_caller_profile_dup(switch_memor
        profile->pool = pool;
        profile->direction = tocopy->direction;
        profile->times = tocopy->times;
+       profile->times->answered = 0;
+       profile->times->progress = 0;
+       profile->times->progress_media = 0;
+       profile->times->created = switch_time_now();
+       profile->times->profile_created = profile->times->created;
+       profile->times->hungup = 0;
+       profile->times->transferred = 0;
 
        if (tocopy->soft) {
                profile_node_t *pn;