mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Fix qemu_malloc.
make {linux,bsd}-user qemu_realloc handle ptr == NULL correctly. spotted by malc. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6466 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
480b9f24d7
commit
baa8c60229
2 changed files with 4 additions and 0 deletions
|
@ -127,6 +127,8 @@ void *qemu_realloc(void *ptr, size_t size)
|
|||
size_t old_size, copy;
|
||||
void *new_ptr;
|
||||
|
||||
if (!ptr)
|
||||
return qemu_malloc(size);
|
||||
old_size = *(size_t *)((char *)ptr - 16);
|
||||
copy = old_size < size ? old_size : size;
|
||||
new_ptr = qemu_malloc(size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue