wxXmlNode::GetAttribute's pointer argument must not be NULL, check for it
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 24 Sep 2007 22:09:06 +0000 (22:09 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 24 Sep 2007 22:09:06 +0000 (22:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48929 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/xml/xml.cpp

index a35d73b26789c65833b0937dd9d6e4859e58ca1f..1f1539556d50901143f8ebbb95fe8a1bb7bf2dbc 100644 (file)
@@ -143,6 +143,8 @@ bool wxXmlNode::HasAttribute(const wxString& attrName) const
 
 bool wxXmlNode::GetAttribute(const wxString& attrName, wxString *value) const
 {
+    wxCHECK_MSG( value, false, "value argument must not be NULL" );
+
     wxXmlAttribute *attr = GetAttributes();
 
     while (attr)