edje_cc: Remove unused variable 'got_hash'

got_hash will always be zero at the point where it's read.

Fixes CID 1261439
This commit is contained in:
Jean-Philippe Andre 2016-08-09 10:56:29 +09:00
parent 4e08a2e834
commit 4f98d6a007
1 changed files with 7 additions and 15 deletions

View File

@ -86,7 +86,6 @@ source_fetch_file(const char *fil, const char *filname)
while (fgets(buf, sizeof(buf), f)) while (fgets(buf, sizeof(buf), f))
{ {
char *p, *pp; char *p, *pp;
int got_hash = 0;
int forgetit = 0; int forgetit = 0;
int haveinclude = 0; int haveinclude = 0;
char *file = NULL, *fname = NULL; char *file = NULL, *fname = NULL;
@ -94,17 +93,12 @@ source_fetch_file(const char *fil, const char *filname)
p = buf; p = buf;
while ((!forgetit) && (*p)) while ((!forgetit) && (*p))
{ {
if (!got_hash) if (!isspace(*p))
{ {
if (!isspace(*p)) if (*p != '#')
{ forgetit = 1;
if (*p == '#') }
got_hash = 1; p++;
else
forgetit = 1;
}
p++;
}
if (!haveinclude) if (!haveinclude)
{ {
@ -184,9 +178,7 @@ source_fetch_file(const char *fil, const char *filname)
} }
else else
p++; p++;
} }
got_hash = 0;
} }
if ((file) && (fname)) if ((file) && (fname))
source_fetch_file(file, fname); source_fetch_file(file, fname);