Fixed false negatives incompleteArrayFill on user defined types (estimate size to determine if it is larger than one byte)
Merged from LCppC.
This commit is contained in:
parent
2baeeeb02f
commit
c25b4f1ad6
|
@ -2556,6 +2556,8 @@ void CheckOther::checkIncompleteArrayFill()
|
|||
int size = mTokenizer->sizeOfType(var->typeStartToken());
|
||||
if (size == 0 && var->valueType()->pointer)
|
||||
size = mSettings->sizeof_pointer;
|
||||
else if (size == 0 && var->type())
|
||||
size = estimateSize(var->type(), mSettings, symbolDatabase);
|
||||
if ((size != 1 && size != 100 && size != 0) || var->isPointer()) {
|
||||
if (printWarning)
|
||||
incompleteArrayFillError(tok, var->name(), tok->str(), false);
|
||||
|
|
|
@ -6758,7 +6758,7 @@ private:
|
|||
" Foo a[5];\n"
|
||||
" memset(a, 'a', 5);\n"
|
||||
"}");
|
||||
TODO_ASSERT_EQUALS("[test.cpp:4]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memset()' with 'sizeof(*a)'?\n", "", errout.str());
|
||||
ASSERT_EQUALS("[test.cpp:4]: (warning, inconclusive) Array 'a' is filled incompletely. Did you forget to multiply the size given to 'memset()' with 'sizeof(*a)'?\n", errout.str());
|
||||
|
||||
check("void f() {\n"
|
||||
" Foo a[5];\n" // Size of foo is unknown
|
||||
|
|
Loading…
Reference in New Issue