Commit 556b32a6 authored by Robert Paananen's avatar Robert Paananen Committed by Jamie
Browse files

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: default avatarRobert Paananen <robert@paananen.nu>
parent 69858eb5
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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);