astyle fix

This commit is contained in:
Reijo Tomperi 2010-04-06 16:56:06 +03:00
parent c4d1d47f6b
commit c28b365ea0
2 changed files with 10 additions and 10 deletions

View File

@ -618,7 +618,7 @@ void CheckBufferOverrun::checkScope(const Token *tok, const std::vector<std::str
Token::Match(tok, "fread|fwrite ( %varid% , %num% , %num% , %any% )", varid) && Token::Match(tok, "fread|fwrite ( %varid% , %num% , %num% , %any% )", varid) &&
MathLib::isInt(tok->strAt(6))) MathLib::isInt(tok->strAt(6)))
{ {
long len = MathLib::toLongNumber(tok->strAt(4))*MathLib::toLongNumber(tok->strAt(6)); long len = MathLib::toLongNumber(tok->strAt(4)) * MathLib::toLongNumber(tok->strAt(6));
if (len < 0 || len > total_size) if (len < 0 || len > total_size)
{ {
bufferOverrun(tok); bufferOverrun(tok);