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:
parent
69858eb50e
commit
556b32a679
|
@ -1169,10 +1169,6 @@ boot_serial_in_dec(char *in, int inlen, char *out, int *out_off, int maxout)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (len > *out_off - sizeof(uint16_t)) {
|
|
||||||
len = *out_off - sizeof(uint16_t);
|
|
||||||
}
|
|
||||||
|
|
||||||
out += sizeof(uint16_t);
|
out += sizeof(uint16_t);
|
||||||
#ifdef __ZEPHYR__
|
#ifdef __ZEPHYR__
|
||||||
crc = crc16_itu_t(CRC16_INITIAL_CRC, out, len);
|
crc = crc16_itu_t(CRC16_INITIAL_CRC, out, len);
|
||||||
|
|
Loading…
Reference in New Issue