[svn-commits] file: branch 1.4 r48038 - in /branches/1.4: ./ pbx/pbx_spool.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Mon Nov 27 08:32:20 MST 2006


Author: file
Date: Mon Nov 27 09:32:19 2006
New Revision: 48038

URL: http://svn.digium.com/view/asterisk?view=rev&rev=48038
Log:
Merged revisions 48037 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r48037 | file | 2006-11-27 10:30:37 -0500 (Mon, 27 Nov 2006) | 2 lines

Do not reference the freed outgoing structure in the debug message. (issue #8425 reported by arkadia)

........

Modified:
    branches/1.4/   (props changed)
    branches/1.4/pbx/pbx_spool.c

Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: branches/1.4/pbx/pbx_spool.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/pbx/pbx_spool.c?view=diff&rev=48038&r1=48037&r2=48038
==============================================================================
--- branches/1.4/pbx/pbx_spool.c (original)
+++ branches/1.4/pbx/pbx_spool.c Mon Nov 27 09:32:19 2006
@@ -387,8 +387,8 @@
 					now += o->retrytime;
 					if (o->callingpid && (o->callingpid == ast_mainpid)) {
 						safe_append(o, time(NULL), "DelayedRetry");
+						ast_log(LOG_DEBUG, "Delaying retry since we're currently running '%s'\n", o->fn);
 						free_outgoing(o);
-						ast_log(LOG_DEBUG, "Delaying retry since we're currently running '%s'\n", o->fn);
 					} else {
 						/* Increment retries */
 						o->retries++;



More information about the svn-commits mailing list