У меня есть небольшой буфер с некоторыми данными (около 35'000 байт).Нет, я бы хотел накачать свой буфер с помощью zlib.Буфер называется pos_in_mem (void *), а длина моего буфера равна len (int *).
Я всегда получаю -3 (Z_DATA_ERROR) для этой части кода:
int ret;
z_stream strm;
unsigned char in[CHUNK];
unsigned char out[CHUNK];
/* allocate deflate state */
strm.zalloc = Z_NULL;
strm.zfree = Z_NULL;
strm.opaque = Z_NULL;
strm.avail_in = 0;
strm.next_in = Z_NULL;
ret = inflateInit(&strm);
if (ret != Z_OK) {
printf("zlib init failed");
}
strm.avail_in = *len; // this is my buffer length
strm.next_in = pos_in_mem; // this is my buffer
strm.avail_out = CHUNK;
strm.next_out = out;
//ret = deflate(&strm, flush);
ret = inflate(&strm, Z_NO_FLUSH); // here i always get a -3 Z_DATA_ERROR
printf("%d", strm.avail_out);
(void)inflateEnd(&strm);
есть идеи?
Спасибо