mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-18 02:42:45 +08:00
fixup! Fix memory leak in term_env
This commit is contained in:
parent
22a67885e1
commit
8069939112
|
@ -549,7 +549,7 @@ static bool initialize_curses_using_fallback(const char *term) {
|
||||||
if (term_var.missing_or_empty()) return false;
|
if (term_var.missing_or_empty()) return false;
|
||||||
|
|
||||||
auto term_env = wcs2string(term_var->as_string());
|
auto term_env = wcs2string(term_var->as_string());
|
||||||
if (term_env != DEFAULT_TERM1 || term_env != DEFAULT_TERM2) return false;
|
if (term_env == DEFAULT_TERM1 || term_env == DEFAULT_TERM2) return false;
|
||||||
|
|
||||||
if (is_interactive_session) debug(1, _(L"Using fallback terminal type '%s'."), term);
|
if (is_interactive_session) debug(1, _(L"Using fallback terminal type '%s'."), term);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user