projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
728ddc4
)
wxXmlNode::GetAttribute's pointer argument must not be NULL, check for it
author
Václav Slavík
<vslavik@fastmail.fm>
Mon, 24 Sep 2007 22:09:06 +0000
(22:09 +0000)
committer
Vá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
patch
|
blob
|
blame
|
history
diff --git
a/src/xml/xml.cpp
b/src/xml/xml.cpp
index a35d73b26789c65833b0937dd9d6e4859e58ca1f..1f1539556d50901143f8ebbb95fe8a1bb7bf2dbc 100644
(file)
--- a/
src/xml/xml.cpp
+++ b/
src/xml/xml.cpp
@@
-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)