Skip to content
Snippets Groups Projects
Unverified Commit 0bd16606 authored by Dimitrios Stoupis's avatar Dimitrios Stoupis
Browse files

CLangtidy recomendation

parent 1768a374
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,6 @@ void MemoryManagementService::RawDataMemoryManagement::loadRawData(Message &requ
if (tempMemory == nullptr) {
// todo: Add error logging and reporting
free(readData);
return;
} else {
readData = tempMemory;
}
......@@ -104,7 +103,6 @@ void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &requ
if (tempMemory == nullptr) {
// todo: Add error logging and reporting
free(readData);
return;
} else {
readData = tempMemory;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment