summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-02-19 05:47:59 +0300
committerAndrei Karas <akaras@inbox.ru>2017-02-19 23:04:53 +0300
commit80ba4766d8ce9861f6d026e791abc741e3fed0f4 (patch)
tree02d509ecd3ae384fba0b8d44a60c71033e3d31d3 /src/utils
parent4526407e2001244a03674e57db8a6807cbbbe2b0 (diff)
downloadManaVerse-80ba4766d8ce9861f6d026e791abc741e3fed0f4.tar.gz
ManaVerse-80ba4766d8ce9861f6d026e791abc741e3fed0f4.tar.bz2
ManaVerse-80ba4766d8ce9861f6d026e791abc741e3fed0f4.tar.xz
ManaVerse-80ba4766d8ce9861f6d026e791abc741e3fed0f4.zip
Fix some memory leaks and add duplicate item fields check.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/xml/libxml.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/utils/xml/libxml.cpp b/src/utils/xml/libxml.cpp
index c19255b24..b85e456f4 100644
--- a/src/utils/xml/libxml.cpp
+++ b/src/utils/xml/libxml.cpp
@@ -250,9 +250,16 @@ namespace XML
xmlChar *const prop = XmlGetProp(node, name);
if (XmlStrEqual(prop, "true"))
+ {
+ XmlFree(prop);
return true;
+ }
if (XmlStrEqual(prop, "false"))
+ {
+ XmlFree(prop);
return false;
+ }
+ XmlFree(prop);
return def;
}