Commit in reactos/subsys/system/cmd on MAIN | |||
filecomp.c | +2 | -1 | 1.6 -> 1.7 |
Command line completion fix (uninitialized memory)
diff -u -r1.6 -r1.7 --- filecomp.c 8 Nov 2004 02:16:06 -0000 1.6 +++ filecomp.c 21 Dec 2004 16:30:24 -0000 1.7 @@ -32,7 +32,8 @@
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];