parent
27459761c9
commit
865a252c89
|
@ -1682,7 +1682,7 @@ bool CheckUninitVar::isVariableUsage(const Token *vartok, bool pointer, bool all
|
|||
}
|
||||
parent = parent->astParent();
|
||||
}
|
||||
if(!assignment)
|
||||
if (!assignment)
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -3459,9 +3459,9 @@ private:
|
|||
" struct AB *ab = malloc(sizeof(struct AB));\n"
|
||||
" return ab->a;\n"
|
||||
"}");
|
||||
ASSERT_EQUALS( "[test.cpp:4]: (error) Memory is allocated but not initialized: ab\n"
|
||||
"[test.cpp:4]: (error) Uninitialized struct member: ab.a\n",
|
||||
errout.str());
|
||||
ASSERT_EQUALS("[test.cpp:4]: (error) Memory is allocated but not initialized: ab\n"
|
||||
"[test.cpp:4]: (error) Uninitialized struct member: ab.a\n",
|
||||
errout.str());
|
||||
|
||||
checkUninitVar2("struct t_udf_file { int dir_left; };\n"
|
||||
"\n"
|
||||
|
|
Loading…
Reference in New Issue