Skip to content
Snippets Groups Projects
Commit 67e81083 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

extmod: Update uzlib to 1.2.2.

Fixes use of uninitialized structure field by tinf_uncompress().
parent 93bb7dff
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment