mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
dll: FspServiceConsoleModeThread: fix stupid bug with command line argument handling
This commit is contained in:
parent
713ee8a917
commit
d3ff12bf60
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user