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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78990 --- shadow/78990 2006-08-07 19:09:00.000000000 -0400 +++ shadow/78990.tmp.18231 2006-08-07 19:15:43.000000000 -0400 @@ -331,6 +331,46 @@ { Dns.GetHostEntry ("127.0.0.1"); Dns.GetHostEntry ("www.google.com"); } } + +------- Additional Comments From [EMAIL PROTECTED] 2006-08-07 19:15 ------- + +On Solaris (Sparc) , applications will crash when a class ,such as +the one below, is instantiated. There is a class within the runtime +called SectionInfo which has this design and will cause apps to crash +when DNS class is used + + internal class blah + { + bool allowLocation = true; + bool? requirePermission = true; // <--- the issue + + public blah() + { + } + } + +it creates the following error + +Unhandled Exception: System.NullReferenceException: Object reference +not set to an instance of an object + at dsnlu.blah..ctor () [0x00000] + at dsnlu.Program.Main (System.String[] args) [0x00000] [EMAIL PROTECTED]:dgarcia$ + + +The following code will not cause a crash + + internal class blah + { + bool? allowLocation = true; + bool? requirePermission = true; + + public blah() + { + } + } + + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
