Previously number of iso packets could have amounted to a transfer
buffer larger than passed buffer, which could lead to overflow.
Now the number of bytes requested from device is always smaller or equal
to the buffer size.
In theory, it could lead to inefficiencies in transfer: if max packet
size is 1024 and user request 2046 bytes of data, transfer will return at most
1024 bytes, while it could use a more efficient 2 packets of 1023 bytes.
But at least it's correct now. It seems that for efficiency the user would
always use the reported max packet size anyway.
The device could still send more data than requested, but libusb takes
care of it.