another coverity fix

This commit is contained in:
Robin Müller 2021-04-11 18:50:48 +02:00
parent 6e6fb62b3c
commit 438049bb80
1 changed files with 4 additions and 1 deletions

View File

@ -286,7 +286,10 @@ void Heater::handleQueue() {
if (result == HasReturnvaluesIF::RETURN_OK) { if (result == HasReturnvaluesIF::RETURN_OK) {
return; return;
} }
parameterHelper.handleParameterMessage(&command); result = parameterHelper.handleParameterMessage(&command);
if (result == HasReturnvaluesIF::RETURN_OK) {
return;
}
} }
} }