Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A patch for USBMonitor.java to avoid crash in USB 3.0 HUB #689

Open
yorkyeah opened this issue Jul 27, 2023 · 0 comments
Open

A patch for USBMonitor.java to avoid crash in USB 3.0 HUB #689

yorkyeah opened this issue Jul 27, 2023 · 0 comments

Comments

@yorkyeah
Copy link

USBMonitor.java line 978, 979 :
mConnection = monitor.mUsbManager.openDevice(device);
mInfo = updateDeviceInfo(monitor.mUsbManager, device, null);

should be

mInfo = updateDeviceInfo(monitor.mUsbManager, device, null);
mConnection = monitor.mUsbManager.openDevice(device);

because usb camera device can not be open twice in the same time. Under USB 2.0 it will okay but 3.0 is wrong

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant