tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=78bbd29720ea21cda59ec96ddba9aa1f165ccba0

commit 78bbd29720ea21cda59ec96ddba9aa1f165ccba0
Author: Tom Hacohen <t...@stosb.com>
Date:   Thu Dec 15 11:18:24 2016 +0000

    Eo: remove unreachable code in isa.
    
    This condition can never be true. It can't be NULL here. A NULL here
    would have caused a crash earlier, though it can only be NULL if an
    allocation fails, which is something that we don't really handle
    for smallish allocations.
    
    CID1366823
---
 src/lib/eo/eo.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index 9cf10d9..9cb8a67 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -1662,7 +1662,6 @@ err_obj:
    return EINA_FALSE;
 
 err:
-   if (!data) return EINA_FALSE;
    ERR("Object %p is not a valid object in this context: object domain: %d, "
        "current domain: %d, local domain: %d, available domains: [%s %s %s 
%s]."
        " Are you trying to access this object from another thread?",

-- 


Reply via email to