fixed uninitialized variable warning

svn path=/trunk/; revision=17987
This commit is contained in:
Thomas Bluemel 2005-09-22 20:44:10 +00:00
parent 5aab768c19
commit c70c695868

View file

@ -854,7 +854,7 @@ MingwBackend::GetBinutilsVersion ( const string& binutilsCommand )
char separators[] = " ";
char *token;
char *prevtoken;
char *prevtoken = NULL;
token = strtok ( buffer, separators );
while ( token != NULL )