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 2019-12-22 22:16:32 +11:00
rodzic 300eb65ae7
commit ed2be79b49
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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;