diff --git a/fallback.h b/fallback.h index b9460f2b3..82cef85db 100644 --- a/fallback.h +++ b/fallback.h @@ -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 diff --git a/fish_pager.cpp b/fish_pager.cpp index 69aad5d95..fb819fab2 100644 --- a/fish_pager.cpp +++ b/fish_pager.cpp @@ -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")); } diff --git a/input.cpp b/input.cpp index 4432633ea..9710db83d 100644 --- a/input.cpp +++ b/input.cpp @@ -385,7 +385,7 @@ void input_destroy() input_common_destroy(); - if (del_curterm(cur_term) == ERR) + if (fish_del_curterm(cur_term) == ERR) { debug(0, _(L"Error while closing terminfo")); }