mirror of
https://github.com/vim/vim.git
synced 2025-10-05 05:34:07 -04:00
patch 8.0.1619: Win32 GUI: crash when winpty is not installed
Problem: Win32 GUI: crash when winpty is not installed and trying to use :shell in a terminal window. Solution: Check for NULL return form term_start(). (Yasuhiro Matsumoto, closes #2727)
This commit is contained in:
@@ -4824,6 +4824,8 @@ mch_call_shell_terminal(
|
||||
argvar[0].vval.v_string = newcmd;
|
||||
argvar[1].v_type = VAR_UNKNOWN;
|
||||
buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
|
||||
if (buf == NULL)
|
||||
return 255;
|
||||
|
||||
/* Find a window to make "buf" curbuf. */
|
||||
aucmd_prepbuf(&aco, buf);
|
||||
|
@@ -766,6 +766,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1619,
|
||||
/**/
|
||||
1618,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user