http://bugzilla.novell.com/show_bug.cgi?id=524084
User [email protected] added comment http://bugzilla.novell.com/show_bug.cgi?id=524084#c1 --- Comment #1 from Rolf Bjarne Kvinge <[email protected]> 2009-07-21 19:27:42 MDT --- This is the (completely wrong) change I used to find the other bugs: --- a/class/System.Runtime.Serialization/System.Xml/XmlDictionary.cs +++ b/class/System.Runtime.Serialization/System.Xml/XmlDictionary.cs @@ -76,6 +76,8 @@ namespace System.Xml public virtual XmlDictionaryString Add (string value) { +if (value == null) + return null; if (is_readonly) throw new InvalidOperationException (); XmlDictionaryString ret; -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
