Fixed #8721 (Regression: False positive array index out of bounds)

This commit is contained in:
Daniel Marjamäki 2018-08-31 18:25:08 +02:00
parent c7e5176284
commit f388c77042
2 changed files with 11 additions and 0 deletions

View File

@ -1297,6 +1297,10 @@ void CheckBufferOverrun::checkGlobalAndLocalVariable()
negativeMemoryAllocationSizeError(tok);
}
/** @todo false negatives: this may be too conservative */
if (!var || !var->isPointer() || var->typeStartToken()->next() != var->typeEndToken())
continue;
// malloc() gets count of bytes and not count of
// elements, so we should calculate count of elements
// manually

View File

@ -3093,6 +3093,13 @@ private:
" tab4[20] = 0;\n"
"}");
ASSERT_EQUALS("[test.cpp:4]: (error) Array 'tab4[20]' accessed at index 20, which is out of bounds.\n", errout.str());
check("void f() {\n" // #8721
" unsigned char **cache = malloc(32);\n"
" cache[i] = malloc(65536);\n"
" cache[i][0xFFFF] = 0;\n"
"}");
ASSERT_EQUALS("", errout.str());
}
// statically allocated buffer