From 0106455588a7390f36bae9ac6d789e94410a5216 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Wed, 13 Jul 2016 11:57:07 +0900 Subject: [PATCH] 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 3f119bbc90..1bd73af71a 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);