boot: Removed unnecessary if-statement

If-statement checks if length is greater than some value right after a check if it is equal to the same value.
This will never be true.

Signed-off-by: Robert Paananen <robert@paananen.nu>
This commit is contained in:
Robert Paananen 2024-04-17 09:22:16 +02:00 committed by Jamie
parent 69858eb50e
commit 556b32a679
1 changed files with 0 additions and 4 deletions

View File

@ -1169,10 +1169,6 @@ boot_serial_in_dec(char *in, int inlen, char *out, int *out_off, int maxout)
return 0;
}
if (len > *out_off - sizeof(uint16_t)) {
len = *out_off - sizeof(uint16_t);
}
out += sizeof(uint16_t);
#ifdef __ZEPHYR__
crc = crc16_itu_t(CRC16_INITIAL_CRC, out, len);