[Mono-bugs] [Bug 82477][Nor] Changed - NRE in CheckBox.LoadPostData
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Sat Aug 18 17:58:32 EDT 2007
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 juraj at hotfeet.ch.
http://bugzilla.ximian.com/show_bug.cgi?id=82477
--- shadow/82477 2007-08-18 17:55:25.000000000 -0400
+++ shadow/82477.tmp.2438 2007-08-18 17:58:32.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 82477
Product: Mono: Class Libraries
Version: 1.2
-OS:
+OS: unknown
OS Details: FC6
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: Sys.Web
AssignedTo: mhabersack at novell.com
ReportedBy: juraj at hotfeet.ch
QAContact: mono-bugs at ximian.com
TargetMilestone: ---
@@ -31,6 +31,19 @@
completely wrong.
------- Additional Comments From juraj at hotfeet.ch 2007-08-18 17:55 -------
Created an attachment (id=19832)
Page.patch - proposed fix
+
+------- Additional Comments From juraj at hotfeet.ch 2007-08-18 17:58 -------
+BTW: Although the patch looks long, all it does is replacing the
+
+if (data != null) {
+ ....
+ ....
+}
+
+by a simple
+
+if (data == null)
+ return;
More information about the mono-bugs
mailing list