aboutsummaryrefslogtreecommitdiffstats
path: root/src/tinyxml2.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-04-15 08:49:26 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-04-15 08:49:26 -0400
commit56fd6a9d86ac57580ec2b91cc98db31dda5f5770 (patch)
tree359c86e617b993a07465dfc020a26704753a5320 /src/tinyxml2.cpp
parent8b0f74445b509d8e59ec89854f2e149ad1948d4e (diff)
Fixed segfaults
Diffstat (limited to 'src/tinyxml2.cpp')
-rwxr-xr-xsrc/tinyxml2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tinyxml2.cpp b/src/tinyxml2.cpp
index 1388489..096ff5b 100755
--- a/src/tinyxml2.cpp
+++ b/src/tinyxml2.cpp
@@ -614,7 +614,7 @@ char* XMLDocument::Identify(char* p, XMLNode** node)
TIXMLASSERT(p);
char* const start = p;
p = XMLUtil::SkipWhiteSpace(p);
- if(!*p) {
+ if (!*p) {
*node = 0;
TIXMLASSERT(p);
return p;