Hello ~ all. 

I found one small bug in elm_main.c

"exe" is used just after "free(exe)". (in elm_quicklaunch_prepare()
function)

Can anybody check about this ? 

Thanks. 

Index: src/lib/elm_main.c
===================================================================
--- src/lib/elm_main.c  (revision 55742)
+++ src/lib/elm_main.c  (working copy)
@@ -755,7 +755,6 @@ elm_quicklaunch_prepare(int argc __UNUSED__,
         return EINA_FALSE;
      }
    INF("dlopen('%s') = %p", exe, qr_handle);
-   free(exe);
    qr_main = dlsym(qr_handle, "elm_main");
    INF("dlsym(%p, 'elm_main') = %p", qr_handle, qr_main);
    if (!qr_main)
@@ -763,8 +762,10 @@ elm_quicklaunch_prepare(int argc __UNUSED__,
         WRN("not quicklauncher capable: no elm_main in '%s'", exe);
         dlclose(qr_handle);
         qr_handle = NULL;
+               free(exe);
         return EINA_FALSE;
      }
+   free(exe);
    return EINA_TRUE;
 #else
    return EINA_FALSE;
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and, 
should the need arise, upgrade to a full multi-node Oracle RAC database 
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to