Avoided two overflows
This commit is contained in:
parent
78248eb2a5
commit
0dd05c0d91
@ -16,9 +16,9 @@ impl<'a> RecordIterator<'a> {
|
|||||||
let total_records = r701.get_total_record_count()?;
|
let total_records = r701.get_total_record_count()?;
|
||||||
|
|
||||||
// Calculate the sequence number on which the last record resides and
|
// Calculate the sequence number on which the last record resides and
|
||||||
// the position of the first useless byte
|
// the index of the first `ff` byte, avoiding overflows
|
||||||
let sequence_number = total_records * 12 / 1024;
|
let sequence_number = (total_records as u32 * 12 / 1024) as u16;
|
||||||
let first_useless_byte_index = (total_records * 12 % 1024) as usize;
|
let first_useless_byte_index = total_records as usize * 12 % 1024;
|
||||||
|
|
||||||
// The endpoint expects the first block of records to be sent first
|
// The endpoint expects the first block of records to be sent first
|
||||||
r701.get_record_bytes(total_records, 0)?;
|
r701.get_record_bytes(total_records, 0)?;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user