1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

cmd: Avoid execution if block misses closing brackets.

This commit is contained in:
Bernhard Übelacker 2024-02-09 21:45:57 +01:00 committed by Alexandre Julliard
parent d7edf3e651
commit c418771a43
3 changed files with 36 additions and 0 deletions

View file

@ -1055,6 +1055,30 @@ if 1 == 0 (
@tab@
@tab@
) else echo block containing two lines with just tab seems to work
::
echo @if 1 == 1 (> blockclosing.cmd
echo echo with closing bracket>> blockclosing.cmd
echo )>> blockclosing.cmd
cmd.exe /Q /C blockclosing.cmd
echo %ERRORLEVEL% ok
::
echo @if 1 == 1 (> blockclosing.cmd
echo echo without closing bracket first>> blockclosing.cmd
echo echo without closing bracket second>> blockclosing.cmd
cmd.exe /Q /C blockclosing.cmd
echo %ERRORLEVEL% two lines
::
echo echo before both blocks> blockclosing.cmd
echo @if 1 == 1 (>> blockclosing.cmd
echo echo before nested block without closing bracket>> blockclosing.cmd
echo @if 2 == 2 (>> blockclosing.cmd
echo echo without closing bracket>> blockclosing.cmd
echo )>> blockclosing.cmd
echo echo outside of block without closing bracket>> blockclosing.cmd
cmd.exe /Q /C blockclosing.cmd
echo %ERRORLEVEL% nested
::
del blockclosing.cmd
echo --- case sensitivity with and without /i option
if bar==BAR echo if does not default to case sensitivity
if not bar==BAR echo if seems to default to case sensitivity

View file

@ -713,6 +713,11 @@ block containing a line with just space and tab seems to work
block containing a line with just tab and space seems to work
block containing two lines with just space seems to work
block containing two lines with just tab seems to work
with closing bracket
0 ok
255 two lines
before both blocks
255 nested
--- case sensitivity with and without /i option
if seems to default to case sensitivity
if /i seems to work

View file

@ -2347,6 +2347,13 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE
}
}
if (curDepth > lineCurDepth) {
WINE_TRACE("Brackets do not match, error out without executing.\n");
WCMD_free_commands(*output);
*output = NULL;
errorlevel = 255;
}
/* Dump out the parsed output */
WCMD_DumpCommands(*output);