fixed uninitialized variable warning
authorThomas Bluemel <thomas@reactsoft.com>
Mon, 29 Aug 2005 20:06:43 +0000 (20:06 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Mon, 29 Aug 2005 20:06:43 +0000 (20:06 +0000)
svn path=/trunk/; revision=17593

reactos/subsys/system/cmd/filecomp.c

index 109865c..740f396 100644 (file)
@@ -572,7 +572,7 @@ VOID CompleteFilename (LPTSTR strIN, BOOL bNext, LPTSTR strOut, INT cusor)
                        no quote at the END of the full name */
                FindPrefixAndSuffix(str,szPrefix,szBaseWord);
                /* Strip quotes */
-               while(i < _tcslen(szBaseWord)+1)
+               for(i = 0; i < _tcslen(szBaseWord); )
                {
                        if(szBaseWord[i] == _T('\"'))
                                memmove(&szBaseWord[i],&szBaseWord[i + 1], _tcslen(&szBaseWord[i]) * sizeof(TCHAR));