patch 8.2.4430: GTK: crash when using 'guiligatures' and reading from stdin
Problem: GTK: crash when using 'guiligatures' and reading from stdin. Solution: Make a copy of the message. (Amon Sha, closes #9719, closes #9814)
This commit is contained in:
@ -759,8 +759,13 @@ readfile(
|
||||
// Also write a message in the GUI window, if there is one.
|
||||
if (gui.in_use && !gui.dying && !gui.starting)
|
||||
{
|
||||
p = (char_u *)_("Reading from stdin...");
|
||||
gui_write(p, (int)STRLEN(p));
|
||||
// make a copy, gui_write() may try to change it
|
||||
p = vim_strsave((char_u *)_("Reading from stdin..."));
|
||||
if (p != NULL)
|
||||
{
|
||||
gui_write(p, (int)STRLEN(p));
|
||||
vim_free(p);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
4430,
|
||||
/**/
|
||||
4429,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user