We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39bac6b commit 6732cdbCopy full SHA for 6732cdb
java-does-usb/src/main/java/net/codecrete/usb/linux/LinuxUSBDevice.java
@@ -66,7 +66,7 @@ private void loadDescription(String path) {
66
// `descriptors` contains the device descriptor followed by the configuration descriptor
67
// (including the interface descriptors, endpoint descriptors etc.)
68
var descriptorsSegment = MemorySegment.ofArray(descriptors);
69
- setFromDeviceDescriptor(descriptorsSegment);
+ setFromDeviceDescriptor(descriptorsSegment.asSlice(0, DeviceDescriptor.LAYOUT));
70
setConfigurationDescriptor(descriptorsSegment.asSlice(DeviceDescriptor.LAYOUT.byteSize()));
71
}
72
0 commit comments