Bugzilla – Bug 315229
[FIX] null exception causes crash on startup
Last modified: 2007-09-15 21:24:40 UTC
---- Reported by kerrick@gmx.net 2004-06-23 04:43:20 MST ---- monodoc in CVS can (and does for me) crash on startup because of this line in browser/settings.cs: 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:29 MST ---- I removed that code yesterday, the message was not very helpful anyways Unknown operating system unknown. Setting to default OS "Other".