Merge branch '2068_panelize_segfault'

* 2068_panelize_segfault:
  Ticket #2068: fixed segfault in panelization of file find result.
This commit is contained in:
Andrew Borodin 2010-02-28 20:10:46 +03:00
commit 60076f52d3
1 changed files with 1 additions and 1 deletions

View File

@ -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)