From fecf52f44e6bc71854d1e0be375e8229aee40d90 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Sun, 11 Jan 2004 12:34:34 +0000 Subject: [PATCH] removed unnecessary commented out lines svn path=/trunk/; revision=7569 --- reactos/lib/shell32/shlexec.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reactos/lib/shell32/shlexec.c b/reactos/lib/shell32/shlexec.c index beb1e74d206..ce0e2ff78ed 100644 --- a/reactos/lib/shell32/shlexec.c +++ b/reactos/lib/shell32/shlexec.c @@ -107,10 +107,8 @@ static BOOL argifyA(char* out, int len, const char* fmt, const char* lpFile, LPI } else { - /* *res++ = '"'; */ while(*args && !isspace(*args)) *res++ = *args++; - /* *res++ = '"'; */ while(isspace(*args)) ++args; @@ -135,10 +133,8 @@ static BOOL argifyA(char* out, int len, const char* fmt, const char* lpFile, LPI } else { - /* *res++ = '"'; */ strcpy(res, cmd); res += strlen(cmd); - /* *res++ = '"'; */ } } }