| 1285 | } |
| 1286 | |
| 1287 | void CheckLeakAutoVar::getErrorMessages(ErrorLogger& errorLogger, const Settings &settings) const |
| 1288 | { |
| 1289 | CheckLeakAutoVarImpl c(nullptr, settings, errorLogger); |
| 1290 | c.deallocReturnError(nullptr, nullptr, "p"); |
| 1291 | c.configurationInfo(nullptr, { nullptr, VarInfo::USED }); // user configuration is needed to complete analysis |
| 1292 | c.doubleFreeError(nullptr, nullptr, "varname", 0); |
| 1293 | } |
nothing calls this directly
no test coverage detected