small fix taken over

This commit is contained in:
Robin Müller 2020-08-24 14:48:22 +02:00
parent 2f53a3fb1b
commit 8e7f167a66
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);