Changed severity of fflushOnInputStream to portability: The behaviour of fflush(stdin) is defined on Linux.

This commit is contained in:
PKEuS 2014-08-31 20:56:05 +02:00
parent e1bc5f5248
commit b07f61170d
2 changed files with 6 additions and 6 deletions

View File

@ -176,7 +176,7 @@ void CheckIO::checkFileUsage()
operation = Filepointer::OPEN;
} else if ((tok->str() == "rewind" || tok->str() == "fseek" || tok->str() == "fsetpos" || tok->str() == "fflush") ||
(windows && tok->str() == "_fseeki64")) {
if (Token::simpleMatch(tok, "fflush ( stdin )"))
if (_settings->isEnabled("portability") && Token::simpleMatch(tok, "fflush ( stdin )"))
fflushOnInputStreamError(tok, tok->strAt(2));
else {
fileTok = tok->tokAt(2);
@ -297,8 +297,8 @@ void CheckIO::checkFileUsage()
void CheckIO::fflushOnInputStreamError(const Token *tok, const std::string &varname)
{
reportError(tok, Severity::error,
"fflushOnInputStream", "fflush() called on input stream '" + varname + "' results in undefined behaviour.");
reportError(tok, Severity::portability,
"fflushOnInputStream", "fflush() called on input stream '" + varname + "' may result in undefined behaviour on non-linux systems.");
}
void CheckIO::ioWithoutPositioningError(const Token *tok)

View File

@ -581,13 +581,13 @@ private:
check("void foo()\n"
"{\n"
" fflush(stdin);\n"
"}");
ASSERT_EQUALS("[test.cpp:3]: (error) fflush() called on input stream 'stdin' results in undefined behaviour.\n", errout.str());
"}", false, true);
ASSERT_EQUALS("[test.cpp:3]: (portability) fflush() called on input stream 'stdin' may result in undefined behaviour on non-linux systems.\n", errout.str());
check("void foo()\n"
"{\n"
" fflush(stdout);\n"
"}");
"}", false, true);
ASSERT_EQUALS("", errout.str());
}