From: Anthony Minessale Date: Wed, 8 Feb 2012 22:52:13 +0000 (-0600) Subject: FS-3883 can you see if this helps X-Git-Tag: v1.2-rc1~19^2^2~68^2~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c07a00ad7224ce2373b19a9066bddec4218c464;p=thirdparty%2Ffreeswitch.git FS-3883 can you see if this helps --- diff --git a/src/switch_caller.c b/src/switch_caller.c index 9382efd58c..715ab85486 100644 --- a/src/switch_caller.c +++ b/src/switch_caller.c @@ -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;