[asterisk-commits] kpfleming: trunk r49524 - in /trunk: ./ channels/iax2-parser.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Thu Jan 4 14:06:36 MST 2007


Author: kpfleming
Date: Thu Jan  4 15:06:35 2007
New Revision: 49524

URL: http://svn.digium.com/view/asterisk?view=rev&rev=49524
Log:
Merged revisions 49523 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r49523 | kpfleming | 2007-01-04 15:06:02 -0600 (Thu, 04 Jan 2007) | 2 lines

if we're going to decrement the frame count when we free a frame, we should inrement it when we create one :-)

........

Modified:
    trunk/   (props changed)
    trunk/channels/iax2-parser.c

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

Modified: trunk/channels/iax2-parser.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/iax2-parser.c?view=diff&rev=49524&r1=49523&r2=49524
==============================================================================
--- trunk/channels/iax2-parser.c (original)
+++ trunk/channels/iax2-parser.c Thu Jan  4 15:06:35 2007
@@ -976,6 +976,8 @@
 	else
 		ast_atomic_fetchadd_int(&oframes, 1);
 	
+	ast_atomic_fetchadd_int(&frames, 1);
+
 	return fr;
 }
 



More information about the asterisk-commits mailing list