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.
This commit is contained in:
Jean-Philippe Andre 2016-07-13 11:57:07 +09:00
parent 82f546fc1f
commit 0106455588
1 changed files with 0 additions and 2 deletions

View File

@ -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);