[asterisk-commits] jrose: trunk r361212 - in /trunk: ./ addons/ooh323cDriver.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Apr 4 15:10:11 CDT 2012
Author: jrose
Date: Wed Apr 4 15:10:08 2012
New Revision: 361212
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=361212
Log:
Fix some stuff involving calls to memcpy and memset
The important parts of the patch were already applied through other updates.
(closes issue ASTERISK-19445)
Reported by: Makoto Dei
Patches:
memset-memcpy-length.patch uploaded by Makoto Dei (license 5027)
........
Merged revisions 361210 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 361211 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/addons/ooh323cDriver.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/addons/ooh323cDriver.c
URL: http://svnview.digium.com/svn/asterisk/trunk/addons/ooh323cDriver.c?view=diff&rev=361212&r1=361211&r2=361212
==============================================================================
--- trunk/addons/ooh323cDriver.c (original)
+++ trunk/addons/ooh323cDriver.c Wed Apr 4 15:10:08 2012
@@ -152,7 +152,6 @@
}
ast_module_ref(myself);
- memset(cur, 0, sizeof(cur));
if ((socketpair(PF_LOCAL, SOCK_STREAM, 0, cur->thePipe)) == -1) {
ast_log(LOG_ERROR, "Can't create thread pipe for call %s\n", call->callToken);
free(cur);
More information about the asterisk-commits
mailing list