Commit e49f46d5c4 for qemu.org
commit e49f46d5c4b5bfbffe6b19bf66a8a9463e248003
Author: Sergei Heifetz <heifetz@yandex-team.com>
Date: Sun Feb 8 15:39:58 2026 +0500
hw/usb/core.c: reorder usage and assertion of p->ep
Reorder the code so the assertion of p->ep occurs before it is
used in the subsequent lines.
Signed-off-by: Sergei Heifetz <heifetz@yandex-team.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
diff --git a/hw/usb/core.c b/hw/usb/core.c
index b3f811c513..9572a870cc 100644
--- a/hw/usb/core.c
+++ b/hw/usb/core.c
@@ -423,10 +423,10 @@ void usb_handle_packet(USBDevice *dev, USBPacket *p)
p->status = USB_RET_NODEV;
return;
}
+ assert(p->ep);
assert(dev == p->ep->dev);
assert(dev->state == USB_STATE_DEFAULT);
usb_packet_check_state(p, USB_PACKET_SETUP);
- assert(p->ep != NULL);
/* Submitting a new packet clears halt */
if (p->ep->halted) {