fix #3003 (segmentation fault of cppcheck (typedef a x[]; y = x ))
This commit is contained in:
parent
b7f42535ec
commit
08e9d64a86
|
@ -1977,6 +1977,12 @@ void Tokenizer::simplifyTypedef()
|
|||
{
|
||||
do
|
||||
{
|
||||
if (!tok2->next())
|
||||
{
|
||||
syntaxError(tok2);
|
||||
return; // can't recover so quit
|
||||
}
|
||||
|
||||
if (!inCast && !inSizeof)
|
||||
tok2 = tok2->next();
|
||||
|
||||
|
|
|
@ -266,6 +266,7 @@ private:
|
|||
TEST_CASE(simplifyTypedef98); // ticket #2963
|
||||
TEST_CASE(simplifyTypedef99); // ticket #2999
|
||||
TEST_CASE(simplifyTypedef100); // ticket #3000
|
||||
TEST_CASE(simplifyTypedef101); // ticket #3003 (segmentation fault)
|
||||
|
||||
TEST_CASE(simplifyTypedefFunction1);
|
||||
TEST_CASE(simplifyTypedefFunction2); // ticket #1685
|
||||
|
@ -5384,6 +5385,14 @@ private:
|
|||
ASSERT_EQUALS("", errout.str());
|
||||
}
|
||||
|
||||
void simplifyTypedef101() // ticket #3003 (segmentation fault)
|
||||
{
|
||||
const char code[] = "typedef a x[];\n"
|
||||
"y = x\n";
|
||||
sizeof_(code);
|
||||
ASSERT_EQUALS("[test.cpp:2]: (error) syntax error\n", errout.str());
|
||||
}
|
||||
|
||||
void simplifyTypedefFunction1()
|
||||
{
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue