mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 00:43:00 -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;
|
PWSTR *Argv = Context;
|
||||||
DWORD Argc;
|
DWORD Argc;
|
||||||
|
|
||||||
for (Argc = 0; 0 != *Argv; Argv++, Argc++)
|
for (Argc = 0; 0 != Argv[Argc]; Argc++)
|
||||||
;
|
;
|
||||||
|
|
||||||
Service = FspServiceFromTable();
|
Service = FspServiceFromTable();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user