:Missed earlier fix to spawn_child
This commit is contained in:
parent
9333a08637
commit
d67c7e7c85
|
@ -312,7 +312,7 @@ spawn_child(char* cmd, int in, int out, int err, DWORD flags) {
|
|||
if(!cmd)
|
||||
break;
|
||||
t = cmd;
|
||||
if (*t = '\"')
|
||||
if (*t == '\"')
|
||||
t++;
|
||||
if (t[0] == '\0' || t[0] == '\\' || t[0] == '.' || t[1] == ':')
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue