1
0
forked from fsfw/fsfw

Merge remote-tracking branch 'upstram/master' into mueller/feature/CSBupdate

This commit is contained in:
2020-08-01 16:46:27 +02:00
20 changed files with 614 additions and 280 deletions

View File

@ -230,8 +230,8 @@ void CommandingServiceBase::handleRequestQueue() {
address = message.getStorageId();
packet.setStoreAddress(address);
if (packet.getSubService() == 0
or isValidSubservice(packet.getSubService()) != RETURN_OK) {
if ((packet.getSubService() == 0)
or (isValidSubservice(packet.getSubService()) != RETURN_OK)) {
rejectPacket(TC_VERIFY::START_FAILURE, &packet, INVALID_SUBSERVICE);
continue;
}