VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/Xml.c
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2016-06-05 13:50:55 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2016-06-17 15:50:39 +0200
commitd4e95293d9ee74ca9a1003317597686509500bb7 (patch)
treedd9e744781feda99135513d55af6385073aad298 /src/Common/Xml.c
parent76d3bc631eff60841026f2526d69f6d661d218a3 (diff)
downloadVeraCrypt-d4e95293d9ee74ca9a1003317597686509500bb7.tar.gz
VeraCrypt-d4e95293d9ee74ca9a1003317597686509500bb7.zip
Windows: fix compiler warnings
Diffstat (limited to 'src/Common/Xml.c')
-rw-r--r--src/Common/Xml.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Common/Xml.c b/src/Common/Xml.c
index d733dac1..6e6f8724 100644
--- a/src/Common/Xml.c
+++ b/src/Common/Xml.c
@@ -128,9 +128,10 @@ char *XmlGetNodeText (char *xmlNode, char *xmlText, int xmlTextSize)
if (t[0] != '<')
return NULL;
- t = strchr (t, '>') + 1;
- if (t == (char *)1) return NULL;
+ t = strchr (t, '>');
+ if (t == NULL) return NULL;
+ t++;
e = strchr (e, '<');
if (e == NULL) return NULL;