elc_fileselector.c: check null path before fileselector populate.

If no path was selected we don't need to populate fileselector.
This fixes https://phab.enlightenment.org/T132.
Thanks uartie for the report.
This commit is contained in:
Daniel Juyung Seo 2013-06-12 15:03:47 +09:00
parent e44d3427e1
commit c7cfcc43f2
1 changed files with 1 additions and 0 deletions

View File

@ -417,6 +417,7 @@ _populate(Evas_Object *obj,
Elm_Object_Item *parent_it)
{
ELM_FILESELECTOR_DATA_GET(obj, sd);
if (!path) return;
#ifdef HAVE_EIO
Listing_Request *lreq;