Browse Source

extmod/uzlib: Explicitly cast ptr-diff-expr to unsigned.

The struct member "dest" should never be less than "destStart", so their
difference is never negative.  Cast as such to make the comparison
explicitly unsigned, ensuring the compiler produces the correct comparison
instruction, and avoiding any compiler warnings.
pull/5446/head
Damien George 5 years ago
parent
commit
ed2be79b49
  1. 2
      extmod/uzlib/tinflate.c

2
extmod/uzlib/tinflate.c

@ -464,7 +464,7 @@ static int tinf_inflate_block_data(TINF_DATA *d, TINF_TREE *lt, TINF_TREE *dt)
}
} else {
/* catch trying to point before the start of dest buffer */
if (offs > d->dest - d->destStart) {
if (offs > (unsigned int)(d->dest - d->destStart)) {
return TINF_DATA_ERROR;
}
d->lzOff = -offs;

Loading…
Cancel
Save