pool raw acces helper bugfix

This commit is contained in:
Robin Müller 2020-04-30 15:42:33 +02:00
parent e1aa285b6d
commit 431709a3ec

View File

@ -73,7 +73,7 @@ ReturnValue_t PoolRawAccessHelper::serializeCurrentPoolEntryIntoBuffer(
uint32_t currentPoolId;
// Deserialize current pool ID from pool ID buffer
ReturnValue_t result = AutoSerializeAdapter::deSerialize(&currentPoolId,
&poolIdBuffer,remainingParameters,true);
&poolIdBuffer,remainingParameters, false);
if(result != RETURN_OK) {
sif::debug << std::hex << "Pool Raw Access Helper: Error deSeralizing "
"pool IDs" << std::dec << std::endl;