Small fixes here and there.

This commit is contained in:
Jaime Thomas
2009-04-14 02:49:43 +00:00
parent aa9e0f4f3d
commit 89c6406b48
3 changed files with 16 additions and 7 deletions

View File

@@ -272,9 +272,12 @@ ecdb_dnd_entry_dnd_set(Evas_Object *o, Ecore_X_Selection_Data_Files *files)
{
Efreet_Uri *uri;
uri = efreet_uri_decode(files->files[0]);
ecdb_entry_text_set(o, uri->path);
efreet_uri_free(uri);
if ((files) && (files->files))
{
uri = efreet_uri_decode(files->files[0]);
ecdb_entry_text_set(o, uri->path);
efreet_uri_free(uri);
}
}
int