small fix

This commit is contained in:
Robin Müller 2020-08-24 14:47:53 +02:00
parent 1b4c4de3fa
commit 26b63d63b9
1 changed files with 4 additions and 3 deletions

View File

@ -30,15 +30,16 @@ ReturnValue_t SerialBufferAdapter<T>::serialize(uint8_t** buffer, size_t* size,
}
if (*size + serializedLength > maxSize) {
return BUFFER_TOO_SHORT;
} else {
}
else {
if (serializeLength) {
SerializeAdapter::serialize(&bufferLength, buffer, size,
maxSize, streamEndianness);
}
if (constBuffer != nullptr) {
if (this->constBuffer != nullptr) {
memcpy(*buffer, this->constBuffer, bufferLength);
}
else if (buffer != nullptr) {
else if (this->buffer != nullptr) {
// This will propably be never reached, constBuffer should always be
// set if non-const buffer is set.
memcpy(*buffer, this->buffer, bufferLength);