checkother:memsetZeroBytes: improved verbose message.
This commit is contained in:
parent
86aa2a27ab
commit
3d47ae9463
|
@ -1736,7 +1736,8 @@ void CheckOther::checkMemsetZeroBytes()
|
|||
void CheckOther::memsetZeroBytesError(const Token *tok, const std::string &varname)
|
||||
{
|
||||
const std::string summary("memset() called to fill 0 bytes of '" + varname + "'.");
|
||||
const std::string verbose(summary + " Second and third arguments might be inverted.");
|
||||
const std::string verbose(summary + " The second and third arguments might be inverted.\n"
|
||||
"The function memset ( void * ptr, int value, size_t num ) sets the first num bytes of the block of memory pointed by ptr to the specified value.");
|
||||
reportError(tok, Severity::warning, "memsetZeroBytes", summary + "\n" + verbose);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue