[Mono-bugs] [Bug 62123][Maj] New - Mono gives an error on mono_runtime_invoke_array running code from IronPython

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 29 Jul 2004 23:59:32 -0400 (EDT)


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 kiwnix@yahoo.es.

http://bugzilla.ximian.com/show_bug.cgi?id=62123

--- shadow/62123	2004-07-29 23:59:32.000000000 -0400
+++ shadow/62123.tmp.15649	2004-07-29 23:59:32.000000000 -0400
@@ -0,0 +1,58 @@
+Bug#: 62123
+Product: Mono: Runtime
+Version: unspecified
+OS: 
+OS Details: Linux Mono CVS from 29/07/2004
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: kiwnix@yahoo.es               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Mono gives an error on mono_runtime_invoke_array running code from IronPython
+
+Description of Problem:
+
+Running IronPython 0.6 with mono and doing this sequence of commands mono
+abort with an error
+
+Code:
+
+import System;
+import System.IO;
+tmpfile = System.IO.File.Open("/tmp/gsspage.temp",System.IO.FileMode.Create);
+import System.Text;
+tmpfile.Write(System.Text.Encoding.UTF8.GetBytes("HELLO!"));
+
+
+Actual Results:
+
+** ERROR **: file object.c: line 1593 (mono_runtime_invoke_array):
+assertion failed: (((gpointer*)params->vector) [i])
+
+Expected Results:
+
+Data is written to the file.
+
+How often does this happen? 
+
+Allways
+
+Additional Information:
+
+Trying to some Gtk# code it fails too.
+
+import Gtk
+Gtk.Application.Initialize()
+Gtk.Application.Init()
+Gtk.Window()
+
+I got this:
+
+** ERROR **: file object.c: line 1593 (mono_runtime_invoke_array):
+assertion failed: (((gpointer*)params->vector) [i])