seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=ea7087c3ad6d24341159602dc95829daa0fa5557

commit ea7087c3ad6d24341159602dc95829daa0fa5557
Author: Daniel Juyung Seo <seojuyu...@gmail.com>
Date:   Tue Oct 8 00:08:19 2013 +0900

    elm_cnp.c: Did a subtle code cleanup.
    
    savedtypes.imgfile should not be null logically or this function should 
have been returned in advance.
---
 src/lib/elm_cnp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/elm_cnp.c b/src/lib/elm_cnp.c
index 97696a4..5d02dcc 100644
--- a/src/lib/elm_cnp.c
+++ b/src/lib/elm_cnp.c
@@ -2775,7 +2775,7 @@ _wl_dropable_data_handle(Wl_Cnp_Selection *sel, char 
*data)
         sdata.data = entrytag;
         drop->dropcb(drop->cbdata, drop->obj, &sdata);
         ecore_wl_dnd_drag_end(ecore_wl_input_get());
-        if (savedtypes.imgfile) free(savedtypes.imgfile);
+        free(savedtypes.imgfile);
         savedtypes.imgfile = NULL;
      }
    else if (drop->types & ELM_SEL_FORMAT_IMAGE)
@@ -2784,7 +2784,7 @@ _wl_dropable_data_handle(Wl_Cnp_Selection *sel, char 
*data)
         sdata.data = (char *)savedtypes.imgfile;
         drop->dropcb(drop->cbdata, drop->obj, &sdata);
         ecore_wl_dnd_drag_end(ecore_wl_input_get());
-        if (savedtypes.imgfile) free(savedtypes.imgfile);
+        free(savedtypes.imgfile);
         savedtypes.imgfile = NULL;
      }
 }

-- 


Reply via email to