mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Command line completion fix (uninitialized memory)
svn path=/trunk/; revision=12274
This commit is contained in:
parent
df23944ec6
commit
f651c1283c
1 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,8 @@ VOID CompleteFilename (LPTSTR str, INT charcount)
|
|||
INT curplace = 0;
|
||||
INT start;
|
||||
INT count;
|
||||
INT step, c;
|
||||
INT step;
|
||||
INT c = 0;
|
||||
BOOL found_dot = FALSE;
|
||||
BOOL perfectmatch = TRUE;
|
||||
TCHAR path[MAX_PATH];
|
||||
|
|
Loading…
Reference in a new issue