Command line completion fix (uninitialized memory)

svn path=/trunk/; revision=12274
This commit is contained in:
Mike Nordell 2004-12-21 16:30:24 +00:00
parent df23944ec6
commit f651c1283c

View file

@ -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];