[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/11] usb/bus: Remove dead assignment in usb_get_fw_dev_path()
From: |
Chen Qun |
Subject: |
[PATCH 09/11] usb/bus: Remove dead assignment in usb_get_fw_dev_path() |
Date: |
Thu, 13 Aug 2020 15:37:10 +0800 |
Clang static code analyzer show warning:
qemu/hw/usb/bus.c:615:13: warning: Value stored to 'pos' is never read
pos += snprintf(fw_path + pos, fw_len - pos, "%s@%lx",
Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com>
---
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Markus Armbruster <armbru@redhat.com>
---
hw/usb/bus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/usb/bus.c b/hw/usb/bus.c
index b17bda3b29..77d3f7ddb8 100644
--- a/hw/usb/bus.c
+++ b/hw/usb/bus.c
@@ -612,8 +612,8 @@ static char *usb_get_fw_dev_path(DeviceState *qdev)
in++;
} else {
/* the device itself */
- pos += snprintf(fw_path + pos, fw_len - pos, "%s@%lx",
- qdev_fw_name(qdev), nr);
+ snprintf(fw_path + pos, fw_len - pos, "%s@%lx",qdev_fw_name(qdev),
+ nr);
break;
}
}
--
2.23.0
- Re: [PATCH 07/11] vfio/platform: Remove dead assignment in vfio_intp_interrupt(), (continued)
[PATCH 06/11] hw/net/virtio-net:Remove redundant statement in virtio_net_rsc_tcp_ctrl_check(), Chen Qun, 2020/08/13
[PATCH 08/11] tcg/optimize: Remove redundant statement in tcg_optimize(), Chen Qun, 2020/08/13
[PATCH 09/11] usb/bus: Remove dead assignment in usb_get_fw_dev_path(),
Chen Qun <=
[PATCH 01/11] hw/arm/virt-acpi-build:Remove dead assignment in build_madt(), Chen Qun, 2020/08/13
[PATCH 11/11] hw/display/vga:Remove redundant statement in vga_draw_graphic(), Chen Qun, 2020/08/13
[PATCH 10/11] hw/intc: Remove redundant statement in exynos4210_combiner_read(), Chen Qun, 2020/08/13
Re: [PATCH 00/11] trivial patchs for static code analyzer fixes, no-reply, 2020/08/13
Re: [PATCH 00/11] trivial patchs for static code analyzer fixes, no-reply, 2020/08/13