cmd: Avoid using the comma operator.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
124dbb84b5
commit
02e4210265
|
@ -505,7 +505,7 @@ WCHAR *WCMD_strip_quotes(WCHAR *cmd) {
|
|||
while((*dest=*src) != '\0') {
|
||||
if (*src=='\"')
|
||||
lastq=dest;
|
||||
dest++, src++;
|
||||
dest++; src++;
|
||||
}
|
||||
lastquote = lastq;
|
||||
if (lastq) {
|
||||
|
|
Loading…
Reference in New Issue