mirror of https://github.com/xqemu/xqemu.git
maint: avoid useless "if (foo) free(foo)" pattern
The free() and g_free() functions both happily accept NULL on any platform QEMU builds on. As such putting a conditional 'if (foo)' check before calls to 'free(foo)' merely serves to bloat the lines of code. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
4595a48a10
commit
ef1e1e0782
|
@ -83,9 +83,7 @@ static void set_mem_path(Object *o, const char *str, Error **errp)
|
|||
error_setg(errp, "cannot change property value");
|
||||
return;
|
||||
}
|
||||
if (fb->mem_path) {
|
||||
g_free(fb->mem_path);
|
||||
}
|
||||
g_free(fb->mem_path);
|
||||
fb->mem_path = g_strdup(str);
|
||||
}
|
||||
|
||||
|
|
|
@ -1355,9 +1355,7 @@ int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
|
|||
}
|
||||
}
|
||||
if (!bprm->p) {
|
||||
if (elf_interpreter) {
|
||||
free(elf_interpreter);
|
||||
}
|
||||
free(elf_interpreter);
|
||||
free (elf_phdata);
|
||||
close(bprm->fd);
|
||||
return -E2BIG;
|
||||
|
|
|
@ -2622,8 +2622,7 @@ build_hash_table (const sparc_opcode **opcode_table,
|
|||
|
||||
memset (hash_table, 0, HASH_SIZE * sizeof (hash_table[0]));
|
||||
memset (hash_count, 0, HASH_SIZE * sizeof (hash_count[0]));
|
||||
if (hash_buf != NULL)
|
||||
free (hash_buf);
|
||||
free(hash_buf);
|
||||
hash_buf = malloc (sizeof (* hash_buf) * num_opcodes);
|
||||
for (i = num_opcodes - 1; i >= 0; --i)
|
||||
{
|
||||
|
|
|
@ -1151,8 +1151,7 @@ static void bt_hci_reset(struct bt_hci_s *hci)
|
|||
hci->event_mask[7] = 0x00;
|
||||
hci->device.inquiry_scan = 0;
|
||||
hci->device.page_scan = 0;
|
||||
if (hci->device.lmp_name)
|
||||
g_free((void *) hci->device.lmp_name);
|
||||
g_free((void *) hci->device.lmp_name);
|
||||
hci->device.lmp_name = NULL;
|
||||
hci->device.class[0] = 0x00;
|
||||
hci->device.class[1] = 0x00;
|
||||
|
@ -1829,8 +1828,7 @@ static void bt_submit_hci(struct HCIInfo *info,
|
|||
case cmd_opcode_pack(OGF_HOST_CTL, OCF_CHANGE_LOCAL_NAME):
|
||||
LENGTH_CHECK(change_local_name);
|
||||
|
||||
if (hci->device.lmp_name)
|
||||
g_free((void *) hci->device.lmp_name);
|
||||
g_free((void *) hci->device.lmp_name);
|
||||
hci->device.lmp_name = g_strndup(PARAM(change_local_name, name),
|
||||
sizeof(PARAM(change_local_name, name)));
|
||||
bt_hci_event_complete_status(hci, HCI_SUCCESS);
|
||||
|
@ -2231,8 +2229,7 @@ static void bt_hci_done(struct HCIInfo *info)
|
|||
|
||||
bt_device_done(&hci->device);
|
||||
|
||||
if (hci->device.lmp_name)
|
||||
g_free((void *) hci->device.lmp_name);
|
||||
g_free((void *) hci->device.lmp_name);
|
||||
|
||||
/* Be gentle and send DISCONNECT to all connected peers and those
|
||||
* currently waiting for us to accept or reject a connection request.
|
||||
|
|
|
@ -594,8 +594,7 @@ static int load_uboot_image(const char *filename, hwaddr *ep, hwaddr *loadaddr,
|
|||
ret = hdr->ih_size;
|
||||
|
||||
out:
|
||||
if (data)
|
||||
g_free(data);
|
||||
g_free(data);
|
||||
close(fd);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -422,9 +422,7 @@ static void set_string(Object *obj, Visitor *v, void *opaque,
|
|||
error_propagate(errp, local_err);
|
||||
return;
|
||||
}
|
||||
if (*ptr) {
|
||||
g_free(*ptr);
|
||||
}
|
||||
g_free(*ptr);
|
||||
*ptr = str;
|
||||
}
|
||||
|
||||
|
|
|
@ -1354,9 +1354,7 @@ static void exynos4210_fimd_reset(DeviceState *d)
|
|||
fimd_update_get_alpha(s, w);
|
||||
}
|
||||
|
||||
if (s->ifb != NULL) {
|
||||
g_free(s->ifb);
|
||||
}
|
||||
g_free(s->ifb);
|
||||
s->ifb = NULL;
|
||||
|
||||
exynos4210_fimd_invalidate(s);
|
||||
|
|
|
@ -252,9 +252,7 @@ void mips_r4k_init(MachineState *machine)
|
|||
fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
|
||||
bios_name);
|
||||
}
|
||||
if (filename) {
|
||||
g_free(filename);
|
||||
}
|
||||
g_free(filename);
|
||||
|
||||
if (kernel_filename) {
|
||||
loaderparams.ram_size = ram_size;
|
||||
|
|
|
@ -464,9 +464,7 @@ static void rx_init_frame(eTSEC *etsec, const uint8_t *buf, size_t size)
|
|||
etsec->rx_fcb_size = 0;
|
||||
}
|
||||
|
||||
if (etsec->rx_buffer != NULL) {
|
||||
g_free(etsec->rx_buffer);
|
||||
}
|
||||
g_free(etsec->rx_buffer);
|
||||
|
||||
/* Do not copy the frame for now */
|
||||
etsec->rx_buffer = (uint8_t *)buf;
|
||||
|
|
|
@ -265,9 +265,7 @@ err_bad_io:
|
|||
err_no_mem:
|
||||
err_bad_attr:
|
||||
for (i = 0; i < ROCKER_TX_FRAGS_MAX; i++) {
|
||||
if (iov[i].iov_base) {
|
||||
g_free(iov[i].iov_base);
|
||||
}
|
||||
g_free(iov[i].iov_base);
|
||||
}
|
||||
|
||||
return err;
|
||||
|
|
|
@ -136,9 +136,7 @@ bool desc_ring_set_size(DescRing *ring, uint32_t size)
|
|||
}
|
||||
|
||||
for (i = 0; i < ring->size; i++) {
|
||||
if (ring->info[i].buf) {
|
||||
g_free(ring->info[i].buf);
|
||||
}
|
||||
g_free(ring->info[i].buf);
|
||||
}
|
||||
|
||||
ring->size = size;
|
||||
|
@ -360,9 +358,7 @@ DescRing *desc_ring_alloc(Rocker *r, int index)
|
|||
|
||||
void desc_ring_free(DescRing *ring)
|
||||
{
|
||||
if (ring->info) {
|
||||
g_free(ring->info);
|
||||
}
|
||||
g_free(ring->info);
|
||||
g_free(ring);
|
||||
}
|
||||
|
||||
|
|
|
@ -187,9 +187,7 @@ static void fw_cfg_bootsplash(FWCfgState *s)
|
|||
g_free(filename);
|
||||
return;
|
||||
}
|
||||
if (boot_splash_filedata != NULL) {
|
||||
g_free(boot_splash_filedata);
|
||||
}
|
||||
g_free(boot_splash_filedata);
|
||||
boot_splash_filedata = (uint8_t *)file_data;
|
||||
boot_splash_filedata_size = file_size;
|
||||
|
||||
|
|
|
@ -328,9 +328,7 @@ static void raven_realize(PCIDevice *d, Error **errp)
|
|||
if (bios_size < 0 || bios_size > BIOS_SIZE) {
|
||||
hw_error("qemu: could not load bios image '%s'\n", s->bios_name);
|
||||
}
|
||||
if (filename) {
|
||||
g_free(filename);
|
||||
}
|
||||
g_free(filename);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -412,8 +412,7 @@ static void sd_reset(SDState *sd)
|
|||
sd_set_cardstatus(sd);
|
||||
sd_set_sdstatus(sd);
|
||||
|
||||
if (sd->wp_groups)
|
||||
g_free(sd->wp_groups);
|
||||
g_free(sd->wp_groups);
|
||||
sd->wp_switch = sd->blk ? blk_is_read_only(sd->blk) : false;
|
||||
sd->wpgrps_size = sect;
|
||||
sd->wp_groups = bitmap_new(sd->wpgrps_size);
|
||||
|
|
|
@ -1453,9 +1453,7 @@ static int xhci_ep_nuke_one_xfer(XHCITransfer *t, TRBCCode report)
|
|||
t->running_retry = 0;
|
||||
killed = 1;
|
||||
}
|
||||
if (t->trbs) {
|
||||
g_free(t->trbs);
|
||||
}
|
||||
g_free(t->trbs);
|
||||
|
||||
t->trbs = NULL;
|
||||
t->trb_count = t->trb_alloced = 0;
|
||||
|
|
|
@ -2081,9 +2081,7 @@ void xen_pt_config_delete(XenPCIPassthroughState *s)
|
|||
if (s->msix) {
|
||||
xen_pt_msix_delete(s);
|
||||
}
|
||||
if (s->msi) {
|
||||
g_free(s->msi);
|
||||
}
|
||||
g_free(s->msi);
|
||||
|
||||
/* free all register group entry */
|
||||
QLIST_FOREACH_SAFE(reg_group, &s->reg_grps, entries, next_grp) {
|
||||
|
|
|
@ -551,9 +551,7 @@ void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque)
|
|||
QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
|
||||
if (strcmp(se->idstr, id) == 0 && se->opaque == opaque) {
|
||||
QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
|
||||
if (se->compat) {
|
||||
g_free(se->compat);
|
||||
}
|
||||
g_free(se->compat);
|
||||
g_free(se->ops);
|
||||
g_free(se);
|
||||
}
|
||||
|
@ -612,9 +610,7 @@ void vmstate_unregister(DeviceState *dev, const VMStateDescription *vmsd,
|
|||
QTAILQ_FOREACH_SAFE(se, &savevm_state.handlers, entry, new_se) {
|
||||
if (se->vmsd == vmsd && se->opaque == opaque) {
|
||||
QTAILQ_REMOVE(&savevm_state.handlers, se, entry);
|
||||
if (se->compat) {
|
||||
g_free(se->compat);
|
||||
}
|
||||
g_free(se->compat);
|
||||
g_free(se);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2710,9 +2710,7 @@ static int tcp_set_msgfds(CharDriverState *chr, int *fds, int num)
|
|||
TCPCharDriver *s = chr->opaque;
|
||||
|
||||
/* clear old pending fd array */
|
||||
if (s->write_msgfds) {
|
||||
g_free(s->write_msgfds);
|
||||
}
|
||||
g_free(s->write_msgfds);
|
||||
|
||||
if (num) {
|
||||
s->write_msgfds = g_malloc(num * sizeof(int));
|
||||
|
|
|
@ -161,31 +161,23 @@ static void free_test_data(test_data *data)
|
|||
AcpiSdtTable *temp;
|
||||
int i;
|
||||
|
||||
if (data->rsdt_tables_addr) {
|
||||
g_free(data->rsdt_tables_addr);
|
||||
}
|
||||
g_free(data->rsdt_tables_addr);
|
||||
|
||||
for (i = 0; i < data->tables->len; ++i) {
|
||||
temp = &g_array_index(data->tables, AcpiSdtTable, i);
|
||||
if (temp->aml) {
|
||||
g_free(temp->aml);
|
||||
g_free(temp->aml);
|
||||
if (temp->aml_file &&
|
||||
!temp->tmp_files_retain &&
|
||||
g_strstr_len(temp->aml_file, -1, "aml-")) {
|
||||
unlink(temp->aml_file);
|
||||
}
|
||||
if (temp->aml_file) {
|
||||
if (!temp->tmp_files_retain &&
|
||||
g_strstr_len(temp->aml_file, -1, "aml-")) {
|
||||
unlink(temp->aml_file);
|
||||
}
|
||||
g_free(temp->aml_file);
|
||||
}
|
||||
if (temp->asl) {
|
||||
g_free(temp->asl);
|
||||
}
|
||||
if (temp->asl_file) {
|
||||
if (!temp->tmp_files_retain) {
|
||||
unlink(temp->asl_file);
|
||||
}
|
||||
g_free(temp->asl_file);
|
||||
g_free(temp->aml_file);
|
||||
g_free(temp->asl);
|
||||
if (temp->asl_file &&
|
||||
!temp->tmp_files_retain) {
|
||||
unlink(temp->asl_file);
|
||||
}
|
||||
g_free(temp->asl_file);
|
||||
}
|
||||
|
||||
g_array_free(data->tables, false);
|
||||
|
@ -420,9 +412,7 @@ static void dump_aml_files(test_data *data, bool rebuild)
|
|||
|
||||
close(fd);
|
||||
|
||||
if (aml_file) {
|
||||
g_free(aml_file);
|
||||
}
|
||||
g_free(aml_file);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -737,9 +737,7 @@ static void display_mouse_set(DisplayChangeListener *dcl,
|
|||
qemu_mutex_lock(&ssd->lock);
|
||||
ssd->ptr_x = x;
|
||||
ssd->ptr_y = y;
|
||||
if (ssd->ptr_move) {
|
||||
g_free(ssd->ptr_move);
|
||||
}
|
||||
g_free(ssd->ptr_move);
|
||||
ssd->ptr_move = qemu_spice_create_cursor_update(ssd, NULL, on);
|
||||
qemu_mutex_unlock(&ssd->lock);
|
||||
}
|
||||
|
@ -752,13 +750,9 @@ static void display_mouse_define(DisplayChangeListener *dcl,
|
|||
qemu_mutex_lock(&ssd->lock);
|
||||
ssd->hot_x = c->hot_x;
|
||||
ssd->hot_y = c->hot_y;
|
||||
if (ssd->ptr_move) {
|
||||
g_free(ssd->ptr_move);
|
||||
ssd->ptr_move = NULL;
|
||||
}
|
||||
if (ssd->ptr_define) {
|
||||
g_free(ssd->ptr_define);
|
||||
}
|
||||
g_free(ssd->ptr_move);
|
||||
ssd->ptr_move = NULL;
|
||||
g_free(ssd->ptr_define);
|
||||
ssd->ptr_define = qemu_spice_create_cursor_update(ssd, c, 0);
|
||||
qemu_mutex_unlock(&ssd->lock);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue