mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 20:33:54 -06:00
Use glib memory allocation and free functions
qemu_malloc/qemu_free no longer exist after this commit. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
14015304b6
commit
7267c0947d
357 changed files with 1672 additions and 1674 deletions
|
@ -112,7 +112,7 @@ static int spice_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
|
|||
assert(s->datalen == 0);
|
||||
if (s->bufsize < len) {
|
||||
s->bufsize = len;
|
||||
s->buffer = qemu_realloc(s->buffer, s->bufsize);
|
||||
s->buffer = g_realloc(s->buffer, s->bufsize);
|
||||
}
|
||||
memcpy(s->buffer, buf, len);
|
||||
s->datapos = s->buffer;
|
||||
|
@ -127,7 +127,7 @@ static void spice_chr_close(struct CharDriverState *chr)
|
|||
|
||||
printf("%s\n", __func__);
|
||||
vmc_unregister_interface(s);
|
||||
qemu_free(s);
|
||||
g_free(s);
|
||||
}
|
||||
|
||||
static void spice_chr_guest_open(struct CharDriverState *chr)
|
||||
|
@ -185,8 +185,8 @@ int qemu_chr_open_spice(QemuOpts *opts, CharDriverState **_chr)
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
chr = qemu_mallocz(sizeof(CharDriverState));
|
||||
s = qemu_mallocz(sizeof(SpiceCharDriver));
|
||||
chr = g_malloc0(sizeof(CharDriverState));
|
||||
s = g_malloc0(sizeof(SpiceCharDriver));
|
||||
s->chr = chr;
|
||||
s->debug = debug;
|
||||
s->active = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue