| 1551 | } |
| 1552 | |
| 1553 | void CheckUninitVarImpl::uninitdataError(const Token *tok, const std::string &varname) |
| 1554 | { |
| 1555 | reportError(tok, Severity::error, "uninitdata", "$symbol:" + varname + "\nMemory is allocated but not initialized: $symbol", CWE_USE_OF_UNINITIALIZED_VARIABLE, Certainty::normal); |
| 1556 | } |
| 1557 | |
| 1558 | void CheckUninitVarImpl::uninitvarError(const Token *tok, const std::string &varname, ErrorPath errorPath) |
| 1559 | { |
no test coverage detected