fix: Correct previous pointer assignment in USB emulation device list

This commit is contained in:
Filip Kolinsky
2026-09-13 21:17:10 +02:00
committed by voidderef
parent 7db85f1f8e
commit 6da28534ad
+1 -1
View File
@@ -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;