Windows: fix compiler warnings

This commit is contained in:
Mounir IDRASSI 2016-06-05 13:50:55 +02:00
parent 76d3bc631e
commit d4e95293d9
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC
2 changed files with 6 additions and 3 deletions

View File

@ -361,9 +361,11 @@ BOOL LoadLanguageFile ()
header = headerPtr; header = headerPtr;
if (header == NULL) return FALSE; if (header == NULL) return FALSE;
header--;
do do
{ {
header++;
if (sscanf (header, "#define %127s %d", key, &intKey) == 2) if (sscanf (header, "#define %127s %d", key, &intKey) == 2)
{ {
WCHAR *str = GetString (key); WCHAR *str = GetString (key);
@ -372,7 +374,7 @@ BOOL LoadLanguageFile ()
AddDictionaryEntry (NULL, intKey, str); AddDictionaryEntry (NULL, intKey, str);
} }
} while ((header = strchr (header, '\n') + 1) != (char *) 1); } while ((header = strchr (header, '\n')) != NULL);
free (headerPtr); free (headerPtr);
} }

View File

@ -128,9 +128,10 @@ char *XmlGetNodeText (char *xmlNode, char *xmlText, int xmlTextSize)
if (t[0] != '<') if (t[0] != '<')
return NULL; return NULL;
t = strchr (t, '>') + 1; t = strchr (t, '>');
if (t == (char *)1) return NULL; if (t == NULL) return NULL;
t++;
e = strchr (e, '<'); e = strchr (e, '<');
if (e == NULL) return NULL; if (e == NULL) return NULL;