same leak as previous in import dialog

SVN revision: 83139
devs/asdfuser/comp-sounds
Mike Blumenkrantz 10 years ago
parent 543b85aa2a
commit 11beb0649c
  1. 1
      ChangeLog
  2. 1
      NEWS
  3. 6
      src/bin/e_import_dialog.c

@ -3,6 +3,7 @@
* module error dialog is no longer remembered across restarts
* fixed small leak in efm when performing dnd onto mounted drive icon
* fixed small leak in e_import_config_dialog_show during failure case
* fixed small leak in e_import_dialog_show during failure case
2013-01-22 Mike Blumenkrantz

@ -114,3 +114,4 @@ Fixes:
* module error dialog is no longer remembered across restarts
* fix small leak in efm when performing dnd onto mounted drive icon
* fixed small leak in e_import_config_dialog_show during failure case
* fixed small leak in e_import_dialog_show during failure case

@ -145,7 +145,11 @@ e_import_dialog_show(E_Container *con, const char *dev, const char *path, Ecore_
if (!id) return NULL;
dia = e_dialog_new(con, "E", "_import_fsel_dialog");
if (!dia) return NULL;
if (!dia)
{
e_object_del(E_OBJECT(id));
return NULL;
}
e_dialog_resizable_set(dia, 1);
dia->data = id;

Loading…
Cancel
Save