compile warning fix and defensive programming
Some checks are pending
EIVE/eive-obsw/pipeline/head Build started...

This commit is contained in:
2023-02-28 01:53:48 +01:00
parent 972012e549
commit 251dddc42d
2 changed files with 5 additions and 2 deletions

View File

@ -1224,6 +1224,9 @@ ReturnValue_t CoreController::handleProtInfoUpdateLine(std::string nextLine) {
}
}
wordIdx++;
if(wordIdx >= 10) {
break;
}
}
return returnvalue::OK;
}