Remove extra semi-colon after conditional. Tested by phessler@.

This commit is contained in:
matthieu 2008-09-01 19:18:13 +00:00
parent 2213b68920
commit 52d6163acf

View File

@ -215,7 +215,7 @@ void NukeToken(char **pstr)
char *temp = NULL;
next = GetNextToken(*pstr, &tok);
if (next != NULL);
if (next != NULL)
temp = strdup(next);
if (pstr && *pstr)
free(*pstr);