mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-30 19:48:38 -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