Changed malloc to g_malloc, free to g_free in bsd-user/qemu.h

Signed-off-by: Md Haris Iqbal <haris.phnx@gmail.com>
Message-Id: <1459861743-4514-1-git-send-email-haris.phnx@gmail.com>
Reviewed-by: Sean Bruno <sbruno@freebsd.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Md Haris Iqbal 2016-04-05 18:39:03 +05:30 committed by Paolo Bonzini
parent 55ad781ca7
commit fd9a304830
1 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ static inline void *lock_user(int type, abi_ulong guest_addr, long len, int copy
#ifdef DEBUG_REMAP
{
void *addr;
addr = malloc(len);
addr = g_malloc(len);
if (copy)
memcpy(addr, g2h(guest_addr), len);
else
@ -384,7 +384,7 @@ static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
return;
if (len > 0)
memcpy(g2h(guest_addr), host_ptr, len);
free(host_ptr);
g_free(host_ptr);
#endif
}