[asterisk-commits] dvossel: branch 1.6.1 r228270 - in /branches/1.6.1: ./ funcs/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Nov 6 09:05:52 CST 2009


Author: dvossel
Date: Fri Nov  6 09:05:47 2009
New Revision: 228270

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=228270
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.1/   (props changed)
    branches/1.6.1/funcs/func_audiohookinherit.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/funcs/func_audiohookinherit.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/funcs/func_audiohookinherit.c?view=diff&rev=228270&r1=228269&r2=228270
==============================================================================
--- branches/1.6.1/funcs/func_audiohookinherit.c (original)
+++ branches/1.6.1/funcs/func_audiohookinherit.c Fri Nov  6 09:05:47 2009
@@ -74,6 +74,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