Fix possible uninitialised memory access in char **STRING_OUT typemap
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13073 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
0ebcf05637
commit
d9393bc22a
2 changed files with 5 additions and 0 deletions
|
|
@ -5,6 +5,10 @@ See the RELEASENOTES file for a summary of changes in each release.
|
|||
Version 2.0.7 (in progress)
|
||||
===========================
|
||||
|
||||
2012-05-11: wsfulton
|
||||
[Java] SF patch #3522674 Fix possible uninitialised memory access in char **STRING_OUT
|
||||
typemap.
|
||||
|
||||
2012-05-11: wsfulton
|
||||
[Java] SF patch #3522611 Fix uninitialised size regression in char **STRING_ARRAY
|
||||
introduced in swig-2.0.6.
|
||||
|
|
|
|||
|
|
@ -114,6 +114,7 @@
|
|||
return $null;
|
||||
}
|
||||
$1 = &temp;
|
||||
*$1 = 0;
|
||||
}
|
||||
|
||||
%typemap(argout) char **STRING_OUT {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue