mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[LIBUSB]
- Don't assert that the clear stall will complete successfully since it may be sent for a removal - Fixes removal surprise removal of HID devices svn path=/trunk/; revision=55971
This commit is contained in:
parent
fed10df057
commit
85f9f9e518
1 changed files with 2 additions and 2 deletions
|
@ -1802,8 +1802,8 @@ CHubController::HandleSyncResetAndClearStall(
|
|||
//
|
||||
// reset data toggle
|
||||
//
|
||||
ASSERT(NT_SUCCESS(Status));
|
||||
EndpointDescriptor->DataToggle = 0x0;
|
||||
if (NT_SUCCESS(Status))
|
||||
EndpointDescriptor->DataToggle = 0x0;
|
||||
|
||||
//
|
||||
// done
|
||||
|
|
Loading…
Reference in a new issue