From d57cdec721d6c3483389eb4a61a1eb998250ac98 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Mon, 29 Aug 2005 20:06:43 +0000 Subject: [PATCH] fixed uninitialized variable warning svn path=/trunk/; revision=17593 --- reactos/subsys/system/cmd/filecomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/cmd/filecomp.c b/reactos/subsys/system/cmd/filecomp.c index 109865cb883..740f396dbc6 100644 --- a/reactos/subsys/system/cmd/filecomp.c +++ b/reactos/subsys/system/cmd/filecomp.c @@ -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));