[Mono-bugs] [Bug 68639][Nor] New - mono runtime (1.02) crashes with SIGSERV

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 21 Oct 2004 12:55:50 -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 lite@dgap.mipt.ru.

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

--- shadow/68639	2004-10-21 12:55:50.000000000 -0400
+++ shadow/68639.tmp.30602	2004-10-21 12:55:50.000000000 -0400
@@ -0,0 +1,45 @@
+Bug#: 68639
+Product: Mono: Runtime
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: MSAF 3.0
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Normal
+Component: packaging
+AssignedTo: duncan@ximian.com                            
+ReportedBy: lite@dgap.mipt.ru               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mono runtime (1.02) crashes with SIGSERV
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+
+
+Steps to reproduce the problem:
+1. compile the program (mcs -g -out:astoxml.exe processer.cs optsparser.cs
+astoxml.cs)
+2. run it
+
+Actual Results: crashes
+
+
+Expected Results: works
+
+
+How often does this happen? 
+everytime
+
+Additional Information:
+
+It seems it crashes due to OptionsParser.PlainArgs (of type ArrayList)
+If I set a property around it ( public ArrayList PlainArguments {get
+{return PlainArguments;}} ) and use it in foreach (string s in
+p.PlainArguments) { Console.Error.WriteLine("loading {0} ...",s); } - it
+will crash. If I don't use a property but use just p.PlainArgs -
+everything's ok.