Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Backported #423 to version 1.4.0.
  • Loading branch information
redboltz committed Feb 20, 2016
commit 3f4ffb9386cb4970e13911c8c63d9a6e0fbb25db
2 changes: 1 addition & 1 deletion src/zone.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void* msgpack_zone_malloc_expand(msgpack_zone* zone, size_t size)
while(sz < size) {
size_t tmp_sz = sz * 2;
if (tmp_sz <= sz) {
tmp_sz = size;
sz = size;
break;
}
sz = tmp_sz;
Expand Down