|
@@ -332,7 +332,7 @@ static int tiff_uncompress(uint8_t *dst, unsigned long *len, const uint8_t *src, |
|
|
z_stream zstream = { 0 }; |
|
|
z_stream zstream = { 0 }; |
|
|
int zret; |
|
|
int zret; |
|
|
|
|
|
|
|
|
zstream.next_in = src; |
|
|
|
|
|
|
|
|
zstream.next_in = (uint8_t *)src; |
|
|
zstream.avail_in = size; |
|
|
zstream.avail_in = size; |
|
|
zstream.next_out = dst; |
|
|
zstream.next_out = dst; |
|
|
zstream.avail_out = *len; |
|
|
zstream.avail_out = *len; |
|
|