From ce1dc562025fe0eefafee634e82d7dc18dd07edc Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 16 Aug 2000 12:43:17 +0000 Subject: [PATCH] Missed the first character of every argument in CommandLineToArgv. --- dlls/shell32/shell32_main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 877310ad5c4..c7d5012493d 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -63,10 +63,7 @@ LPWSTR* WINAPI CommandLineToArgvW(LPWSTR cmdline,LPDWORD numargs) *s=0x0020; while (*s && *s==0x0020) s++; - if (*s) - t=s+1; - else - t=s; + t=s; continue; } s++; -- 2.11.4.GIT