mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 17:59:52 +00:00
cpp: fix return type mismatch in zone.c
This commit is contained in:
parent
18967162cf
commit
5cad81bf4c
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ msgpack_zone* msgpack_zone_new(size_t chunk_size)
|
|||
|
||||
if(!init_chunk_list(&zone->chunk_list, chunk_size)) {
|
||||
free(zone);
|
||||
return false;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
init_finalizer_array(&zone->finalizer_array);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue