* Initialize some variables.

This commit is contained in:
Justin Maggard
2009-03-19 21:42:13 +00:00
parent ac5a37b27a
commit 06784a31ca
6 changed files with 10 additions and 9 deletions

View File

@ -31,7 +31,7 @@ decodeString(char * string, int inplace)
if( !string )
return NULL;
int alloc = (int)strlen(string)+1;
char *ns;
char * ns = NULL;
unsigned char in;
int strindex=0;
long hex;