Skip to content

Commit

Permalink
Merge pull request #427 from redboltz/bp_423_to_1.4
Browse files Browse the repository at this point in the history
Backported #423 to version 1.4.0.
  • Loading branch information
redboltz committed Feb 20, 2016
2 parents cabd8a8 + 3f4ffb9 commit bb0617b
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit bb0617b

Please sign in to comment.