epp - fix unused pointer var bug
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 25 Aug 2014 03:57:26 +0000 (12:57 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 25 Aug 2014 03:57:26 +0000 (12:57 +0900)
fix CID 1039493

src/bin/edje/epp/cpplib.c

index 5891436bceb1ac5565e19cf233b780994dcf5ef9..5f2fc21d7600ccc8a794f5a8a1dba17bc647a439 100644 (file)
@@ -2427,7 +2427,7 @@ special_symbol(HASHNODE * hp, cpp_reader * pfile)
          }
        if (!is_idstart[*ip->cur])
           goto oops;
-       if ((hp = cpp_lookup((const char *)ip->cur, -1, -1)))
+       if (cpp_lookup((const char *)ip->cur, -1, -1))
          {
             buf = " 1 ";
          }