[asterisk-commits] dvossel: branch 1.6.0 r228271 - in /branches/1.6.0: ./ funcs/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Nov 6 09:06:24 CST 2009
Author: dvossel
Date: Fri Nov 6 09:06:19 2009
New Revision: 228271
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=228271
Log:
Merged revisions 228268 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r228268 | dvossel | 2009-11-06 09:04:24 -0600 (Fri, 06 Nov 2009) | 9 lines
fixes memory leak in func_audiohookinherit.c
(closes issue #15394)
Reported by: boroda
Patches:
bug15394_memoryleak_diff2.txt uploaded by dbrooks (license 790)
Tested by: dbrooks, boroda
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/funcs/func_audiohookinherit.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/funcs/func_audiohookinherit.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/funcs/func_audiohookinherit.c?view=diff&rev=228271&r1=228270&r2=228271
==============================================================================
--- branches/1.6.0/funcs/func_audiohookinherit.c (original)
+++ branches/1.6.0/funcs/func_audiohookinherit.c Fri Nov 6 09:06:19 2009
@@ -72,6 +72,7 @@
ast_debug(3, "Moved audiohook %s from %s(%p) to %s(%p)\n",
audiohook->source, old_chan->name, old_chan, new_chan->name, new_chan);
}
+ ast_free(datastore);
return;
}
More information about the asterisk-commits
mailing list