1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-04-03 21:52:58 +03:00

(edit_search_cmd): clarify handling of NULL item of history.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2021-05-22 14:26:33 +03:00
parent 7bc1b19676
commit 9d4eb459da

@ -2869,8 +2869,9 @@ edit_search_cmd (WEdit * edit, gboolean again)
GList *history;
history = mc_config_history_get (MC_HISTORY_SHARED_SEARCH);
if (history != NULL && history->data != NULL)
if (history != NULL)
{
/* FIXME: is it possible that history->data == NULL? */
edit->last_search_string = (char *) history->data;
history->data = NULL;
history = g_list_first (history);
@ -2881,10 +2882,12 @@ edit_search_cmd (WEdit * edit, gboolean again)
edit_do_search (edit);
return;
}
/* found, but cannot init search */
MC_PTR_FREE (edit->last_search_string);
}
/* if not... then ask for an expression */
MC_PTR_FREE (edit->last_search_string);
edit_search (edit);
}
}