mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 04:52:59 +01:00
c: fixes msgpack_zbuffer_flush: error checking
This commit is contained in:
parent
f88c029a4c
commit
e43f57fe1a
@ -125,7 +125,9 @@ char* msgpack_zbuffer_flush(msgpack_zbuffer* zbuf)
|
|||||||
case Z_STREAM_END:
|
case Z_STREAM_END:
|
||||||
return zbuf->data;
|
return zbuf->data;
|
||||||
case Z_OK:
|
case Z_OK:
|
||||||
msgpack_zbuffer_expand(zbuf);
|
if(!msgpack_zbuffer_expand(zbuf)) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user