[svn-commits] may: branch 10 r364651 - in /branches/10: ./ addons/ooh323cDriver.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Apr 30 11:49:01 CDT 2012
Author: may
Date: Mon Apr 30 11:48:57 2012
New Revision: 364651
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=364651
Log:
Fix use freed pointer in return value from call thread
(issue ASTERISK-19663)
Reported by: Matt Jordan
Patches:
ASTERISK-19663-ooh323.patch (License #5415)
........
Merged revisions 364649 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/10/ (props changed)
branches/10/addons/ooh323cDriver.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/addons/ooh323cDriver.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/addons/ooh323cDriver.c?view=diff&rev=364651&r1=364650&r2=364651
==============================================================================
--- branches/10/addons/ooh323cDriver.c (original)
+++ branches/10/addons/ooh323cDriver.c Mon Apr 30 11:48:57 2012
@@ -124,7 +124,7 @@
free(mycthread);
ast_module_unref(myself);
ast_update_use_count();
- return dummy;
+ return NULL;
}
int ooh323c_start_call_thread(ooCallData *call) {
More information about the svn-commits
mailing list