[Mono-bugs] [Bug 50918][Nor] Changed - P/Invoke? RNGCryptoServiceProvider / Mono.Security.Win32
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 9 Dec 2003 07:25:39 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by patrik.torstensson@intel.com.
http://bugzilla.ximian.com/show_bug.cgi?id=50918
--- shadow/50918 2003-12-09 00:49:07.000000000 -0500
+++ shadow/50918.tmp.14106 2003-12-09 07:25:39.000000000 -0500
@@ -1,13 +1,13 @@
Bug#: 50918
Product: Mono/Runtime
Version: unspecified
OS: other
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Normal
Component: misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: spouliot@videotron.ca
QAContact: mono-bugs@ximian.com
@@ -63,6 +63,14 @@
cryptapi
http://lists.ximian.com/archives/public/mono-patches/2003-
December/027875.html
+
+------- Additional Comments From Patrik.Torstensson@intel.com 2003-12-09 07:25 -------
+It was a callconv issue, Mono uses a different standard callconv
+that MS.NET. That caused issue when calling g_free in the marshall
+code (that was added around release 0.24)
+
+Added CallingConvention=CallingConvention.StdCall on the DllImport
+and now it works.