Work around some Windows CMD.EXE programs that will fail executing a totally empty batch file.
[SVN r41626]
This commit is contained in:
parent
787fa1f93f
commit
cca76bfc6a
@ -238,7 +238,7 @@ void execcmd(
|
||||
}
|
||||
|
||||
/* Trim leading, -ending- white space */
|
||||
while( isspace( *command ) )
|
||||
while( *(command+1) && isspace( *command ) )
|
||||
++command;
|
||||
|
||||
/* Write to .BAT file unless the line would be too long and it
|
||||
|
Loading…
Reference in New Issue
Block a user