More alignment crap.

This commit is contained in:
Shyotl
2012-10-22 02:51:41 -05:00
parent 4fe84efafd
commit dff6171605
2 changed files with 6 additions and 2 deletions

View File

@@ -100,7 +100,11 @@ inline void* ll_aligned_realloc_16(void* ptr, size_t size, size_t old_size) // r
void* ret = ll_aligned_malloc_16(size);
if (ptr)
{
memcpy(ret, ptr, old_size);
if (ret)
{
// Only copy the size of the smallest memory block to avoid memory corruption.
memcpy(ret, ptr, llmin(old_size, size));
}
ll_aligned_free_16(ptr);
}
return ret;