Missing Initialization of FDIR in FreshDeviceHandlerBase #33

Merged
muellerr merged 8 commits from meier/debug into develop 2024-03-29 12:50:44 +01:00
4 changed files with 16 additions and 14 deletions
Showing only changes of commit babb02ebb6 - Show all commits

View File

@@ -52,7 +52,8 @@ DynamicFIFO<size_t>* SharedRingBuffer::getReceiveSizesFifo() {
return receiveSizesFifo;
}
ReturnValue_t SharedRingBuffer::fifoEmpty(bool& empty, MutexIF::TimeoutType timeoutType, uint32_t timeoutMs) {
ReturnValue_t SharedRingBuffer::fifoEmpty(bool& empty, MutexIF::TimeoutType timeoutType,
uint32_t timeoutMs) {
if (receiveSizesFifo == nullptr) {
return returnvalue::FAILED;
}

View File

@@ -3,8 +3,7 @@
ExtendedControllerBase::ExtendedControllerBase(object_id_t objectId, size_t commandQueueDepth)
: ControllerBase(objectId, commandQueueDepth),
poolManager(this, commandQueue),
actionHelper(this, commandQueue) {
}
actionHelper(this, commandQueue) {}
ExtendedControllerBase::~ExtendedControllerBase() = default;