mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-31 05:52:55 +08:00
Merge pull request #969 from BennyEvans/master
Fix for dcd_synopsys driver integer overflow in HS mode (issue #968).
This commit is contained in:
commit
ecd217d163
@ -656,7 +656,7 @@ bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint16_t num_packets = (total_bytes / xfer->max_size);
|
uint16_t num_packets = (total_bytes / xfer->max_size);
|
||||||
uint8_t const short_packet_size = total_bytes % xfer->max_size;
|
uint16_t const short_packet_size = total_bytes % xfer->max_size;
|
||||||
|
|
||||||
// Zero-size packet is special case.
|
// Zero-size packet is special case.
|
||||||
if(short_packet_size > 0 || (total_bytes == 0)) {
|
if(short_packet_size > 0 || (total_bytes == 0)) {
|
||||||
@ -687,7 +687,7 @@ bool dcd_edpt_xfer_fifo (uint8_t rhport, uint8_t ep_addr, tu_fifo_t * ff, uint16
|
|||||||
xfer->total_len = total_bytes;
|
xfer->total_len = total_bytes;
|
||||||
|
|
||||||
uint16_t num_packets = (total_bytes / xfer->max_size);
|
uint16_t num_packets = (total_bytes / xfer->max_size);
|
||||||
uint8_t const short_packet_size = total_bytes % xfer->max_size;
|
uint16_t const short_packet_size = total_bytes % xfer->max_size;
|
||||||
|
|
||||||
// Zero-size packet is special case.
|
// Zero-size packet is special case.
|
||||||
if(short_packet_size > 0 || (total_bytes == 0)) num_packets++;
|
if(short_packet_size > 0 || (total_bytes == 0)) num_packets++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user