[Mono-bugs] [Bug 60612][Nor] Changed - [FIX] null exception causes crash on startup
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 23 Jun 2004 07:50:30 -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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=60612
--- shadow/60612 2004-06-23 04:43:20.000000000 -0400
+++ shadow/60612.tmp.9731 2004-06-23 07:50:29.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 60612
Product: Mono: Doctools
Version: unspecified
-OS:
+OS: unknown
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: FIXED
+Severity: Unknown
Priority: Normal
Component: Gui
AssignedTo: mono-bugs@ximian.com
ReportedBy: kerrick@gmx.net
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -21,6 +21,10 @@
if (EditingUtils.GetChangesFrom (Settings.SerialNumber).Count != 0) {
GetChangesFrom can return null and this should be used in its stead:
if (EditingUtils.GetChangesFrom (Settings.SerialNumber) != null &&
EditingUtils.GetChangesFrom (Settings.SerialNumber).Count != 0) {
+
+------- Additional Comments From miguel@ximian.com 2004-06-23 07:50 -------
+I removed that code yesterday, the message was not very helpful
+anyways