Skip to content

Commit

Permalink
Ticket #2068: fixed segfault in panelization of file find result.
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
  • Loading branch information
aborodin committed Feb 28, 2010
1 parent 9396aa5 commit 7b9226c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/find.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7b9226c

Please sign in to comment.