mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-23 18:13:42 +00:00
[tippecanoe] Added missing dependency for libdeflate as git submodule | This work was sponsored by SkySight (@plantain)
This commit is contained in:
parent
5f8bee69cc
commit
fb07fbd68c
3
mvt.cpp
3
mvt.cpp
@ -39,10 +39,9 @@ int decompress(std::string const &input, std::string &output) {
|
||||
while (true) {
|
||||
long unsigned int existing_output = 0;
|
||||
|
||||
int ret = libdeflate_deflate_decompress_ex(decompressor,
|
||||
int ret = libdeflate_deflate_decompress(decompressor,
|
||||
next_in, avail_in,
|
||||
next_out, avail_out,
|
||||
&existing_output,
|
||||
&existing_output);
|
||||
|
||||
output.resize(existing_output + 2 * avail_in + 100);
|
||||
|
Loading…
x
Reference in New Issue
Block a user