mirror of
https://github.com/reactos/reactos.git
synced 2026-07-07 13:09:40 +08:00
[Y]
- Fix argument checking - Close correct handle - Patch by Kuts Alexey - bug 6004 svn path=/trunk/; revision=51087
This commit is contained in:
@@ -53,7 +53,7 @@ int main (int argc, char **argv)
|
||||
hConsoleIn = GetStdHandle(STD_INPUT_HANDLE);
|
||||
hConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE);
|
||||
|
||||
if (_tcsncmp (argv[1], _T("/?"), 2) == 0)
|
||||
if (argc == 2 && _tcsncmp (argv[1], _T("/?"), 2) == 0)
|
||||
{
|
||||
ConOutPuts(_T("copy stdin to stdout and then files to stdout\n"
|
||||
"\n"
|
||||
@@ -115,7 +115,7 @@ int main (int argc, char **argv)
|
||||
}
|
||||
while(FindNextFile(hFind,&FindData));
|
||||
|
||||
FindClose(hFile);
|
||||
FindClose(hFind);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user