epp - fix unused pointer var bug

fix CID 1039493
This commit is contained in:
Carsten Haitzler 2014-08-25 12:57:26 +09:00
parent 75a04d6c7f
commit f5f27afee0
1 changed files with 1 additions and 1 deletions

View 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 ";
}