mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 12:04:39 +08:00
Hopeful fix for https://github.com/fish-shell/fish-shell/issues/594
This commit is contained in:
parent
d89fcdcc5f
commit
c55cbd3f2f
|
@ -346,12 +346,13 @@ size_t wcslcpy(wchar_t *dst, const wchar_t *src, size_t siz);
|
|||
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_BROKEN_DEL_CURTERM
|
||||
|
||||
/**
|
||||
BSD del_curterm seems to do a double-free. We redefine it as a no-op
|
||||
*/
|
||||
#define del_curterm(oterm) OK
|
||||
#ifdef HAVE_BROKEN_DEL_CURTERM
|
||||
#define fish_del_curterm(X) OK
|
||||
#else
|
||||
#define fish_del_curterm(X) del_curterm(X)
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_LRAND48_R
|
||||
|
|
|
@ -1112,7 +1112,7 @@ static void destroy()
|
|||
env_universal_destroy();
|
||||
input_common_destroy();
|
||||
wutil_destroy();
|
||||
if (del_curterm(cur_term) == ERR)
|
||||
if (fish_del_curterm(cur_term) == ERR)
|
||||
{
|
||||
debug(0, _(L"Error while closing terminfo"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user