extmod: Update uzlib to 1.2.2.

Fixes use of uninitialized structure field by tinf_uncompress().
pull/1808/merge
Paul Sokolovsky 2016-02-01 23:05:45 +02:00
rodzic 93bb7dffd2
commit 67e8108345
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -458,6 +458,7 @@ int tinf_uncompress(void *dest, unsigned int *destLen,
d.destStart = (unsigned char *)dest;
d.destRemaining = *destLen;
d.destSize = *destLen;
res = tinf_uncompress_dyn(&d);