mirror of
https://github.com/MidnightCommander/mc
synced 2025-03-12 19:03:10 +03:00
Ticket #2068: fixed segfault in panelization of file find result.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
9396aa5f18
commit
7b9226c5da
@ -1255,7 +1255,7 @@ find_file (const char *start_dir, const char *pattern, const char *content,
|
||||
const char *lc_filename = NULL;
|
||||
WLEntry *le = (WLEntry *) entry->data;
|
||||
|
||||
if ((le->text == NULL) || (entry->data == NULL))
|
||||
if ((le->text == NULL) || (le->data == NULL))
|
||||
continue;
|
||||
|
||||
if (content_pattern != NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user