mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
Merge pull request #40 from zeux/master
Fix 32-bit integer overflow issues
This commit is contained in:
commit
1a8060257a
1 changed files with 2 additions and 3 deletions
|
@ -265,15 +265,14 @@ static void* array_realloc(void* ptr, fastObjUInt n, fastObjUInt b)
|
|||
fastObjUInt sz = array_size(ptr);
|
||||
fastObjUInt nsz = sz + n;
|
||||
fastObjUInt cap = array_capacity(ptr);
|
||||
fastObjUInt ncap = 3 * cap / 2;
|
||||
fastObjUInt ncap = cap + cap / 2;
|
||||
fastObjUInt* r;
|
||||
|
||||
|
||||
if (ncap < nsz)
|
||||
ncap = nsz;
|
||||
ncap = (ncap + 15) & ~15u;
|
||||
|
||||
r = (fastObjUInt*)(memory_realloc(ptr ? _array_header(ptr) : 0, b * ncap + 2 * sizeof(fastObjUInt)));
|
||||
r = (fastObjUInt*)(memory_realloc(ptr ? _array_header(ptr) : 0, (size_t)b * ncap + 2 * sizeof(fastObjUInt)));
|
||||
if (!r)
|
||||
return 0;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue