mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
fixed uninitialized variable warning
svn path=/trunk/; revision=17987
This commit is contained in:
parent
5aab768c19
commit
c70c695868
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue