[Mono-bugs] [Bug 664297] New: runtime crashes when running simple program

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Thu Jan 13 11:40:47 EST 2011


https://bugzilla.novell.com/show_bug.cgi?id=664297

https://bugzilla.novell.com/show_bug.cgi?id=664297#c0


           Summary: runtime crashes when running simple program
    Classification: Mono
           Product: Mono: Runtime
           Version: 1.2.0
          Platform: x86
        OS/Version: Mac OS X 10.6
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: JIT
        AssignedTo: lupus at novell.com
        ReportedBy: lucas.meijer at gmail.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---
           Blocker: ---


User-Agent:       Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-US)
AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10

2.6 and 2.8 crashes when running this program:


class GameObject
{
}

class ArrayNullCrashHelper
{
        static void Main()
        {
                new ArrayNullCrashHelper();
        }

        private GameObject[,] uninitializedarray = null;

        public ArrayNullCrashHelper()
        {
                uninitializedarray[1, 1] = new GameObject();
        }
}


Reproducible: Always

Steps to Reproduce:
run it.

Actual Results:  
crash

Expected Results:  
no crash

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list