edje_cc: Remove unused variable 'got_hash'
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 9 Aug 2016 01:56:29 +0000 (10:56 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Tue, 9 Aug 2016 02:05:50 +0000 (11:05 +0900)
got_hash will always be zero at the point where it's read.

Fixes CID 1261439

src/bin/edje/edje_cc_sources.c

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