mirror of
https://github.com/pumpitupdev/pumptools.git
synced 2026-09-22 22:28:03 +03:00
fix: Correct previous pointer assignment in USB emulation device list
This commit is contained in:
committed by
voidderef
parent
7db85f1f8e
commit
6da28534ad
@@ -243,7 +243,7 @@ _cnh_usb_emu_usbhook_find_devices(struct cnh_usbhook_irp *irp)
|
||||
/* Append at end of bus chain */
|
||||
it->next = fakebus;
|
||||
/* Keep doubly linked list intact */
|
||||
fakebus->prev = it->next;
|
||||
fakebus->prev = it;
|
||||
}
|
||||
|
||||
fakebus_dev_tail = NULL;
|
||||
|
||||
Reference in New Issue
Block a user