mirror of https://github.com/xemu-project/xemu.git
Fix qemu_free use in baum.c
baum.c is using free() instead of qemu_free(). Fix it. Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
b2538b4b1f
commit
49cd8046dd
|
@ -559,7 +559,7 @@ static void baum_chr_read(void *opaque)
|
||||||
if (ret == -1 && (brlapi_errno != BRLAPI_ERROR_LIBCERR || errno != EINTR)) {
|
if (ret == -1 && (brlapi_errno != BRLAPI_ERROR_LIBCERR || errno != EINTR)) {
|
||||||
brlapi_perror("baum: brlapi_readKey");
|
brlapi_perror("baum: brlapi_readKey");
|
||||||
brlapi__closeConnection(baum->brlapi);
|
brlapi__closeConnection(baum->brlapi);
|
||||||
free(baum->brlapi);
|
qemu_free(baum->brlapi);
|
||||||
baum->brlapi = NULL;
|
baum->brlapi = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -622,8 +622,8 @@ fail:
|
||||||
qemu_free_timer(baum->cellCount_timer);
|
qemu_free_timer(baum->cellCount_timer);
|
||||||
brlapi__closeConnection(handle);
|
brlapi__closeConnection(handle);
|
||||||
fail_handle:
|
fail_handle:
|
||||||
free(handle);
|
qemu_free(handle);
|
||||||
free(chr);
|
qemu_free(chr);
|
||||||
free(baum);
|
qemu_free(baum);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue