File tree 2 files changed +3
-2
lines changed 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
47
47
- Fixed wrong version number in ` conda.recipe ` (#398 )
48
48
- Fixed fixture location for Python tests and ` Embedded_Tests `
49
49
- Fixed ` PythonException ` crash during Shutdown (#400 )
50
+ - Fixed ` Py_Main ` & ` PySys_SetArgvEx ` no mem error on ` UCS4/PY3 ` (#399 )
50
51
51
52
### Removed
52
53
Original file line number Diff line number Diff line change @@ -667,7 +667,7 @@ internal unsafe static extern IntPtr
667
667
public unsafe static extern int
668
668
Py_Main (
669
669
int argc ,
670
- [ MarshalAs ( UnmanagedType . SysUInt ) ] IntPtr lplpargv
670
+ IntPtr lplpargv
671
671
) ;
672
672
673
673
public static int Py_Main ( int argc , string [ ] argv )
@@ -2120,7 +2120,7 @@ internal unsafe static extern IntPtr
2120
2120
internal unsafe static extern void
2121
2121
PySys_SetArgvEx (
2122
2122
int argc ,
2123
- [ MarshalAs ( UnmanagedType . SysUInt ) ] IntPtr lplpargv,
2123
+ IntPtr lplpargv ,
2124
2124
int updatepath
2125
2125
) ;
2126
2126
You can’t perform that action at this time.
0 commit comments