jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0106455588a7390f36bae9ac6d789e94410a5216

commit 0106455588a7390f36bae9ac6d789e94410a5216
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Wed Jul 13 11:57:07 2016 +0900

    edje_cc: Fix minor coverity defect
    
    CID 1261439
    
    An assigned value that is never used may represent unnecessary computation,
    an incorrect algorithm, or possibly the need for cleanup or refactoring.
    
    In source_fetch_file: A value assigned to a variable is never used. 
(CWE-563)
    
    Tested compilation of a few EDC files with no breakage.
---
 src/bin/edje/edje_cc_sources.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/bin/edje/edje_cc_sources.c b/src/bin/edje/edje_cc_sources.c
index 3f119bb..1bd73af 100644
--- a/src/bin/edje/edje_cc_sources.c
+++ b/src/bin/edje/edje_cc_sources.c
@@ -185,8 +185,6 @@ source_fetch_file(const char *fil, const char *filname)
                  else
                    p++;
               }
-
-            got_hash = 0;
          }
        if ((file) && (fname))
           source_fetch_file(file, fname);

-- 


Reply via email to