mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-14 15:52:47 -05:00
dll: FspServiceConsoleModeThread: fix stupid bug with command line argument handling
This commit is contained in:
@ -488,7 +488,7 @@ static DWORD WINAPI FspServiceConsoleModeThread(PVOID Context)
|
||||
PWSTR *Argv = Context;
|
||||
DWORD Argc;
|
||||
|
||||
for (Argc = 0; 0 != *Argv; Argv++, Argc++)
|
||||
for (Argc = 0; 0 != Argv[Argc]; Argc++)
|
||||
;
|
||||
|
||||
Service = FspServiceFromTable();
|
||||
|
Reference in New Issue
Block a user