Add comment regarding avoiding panics
This commit is contained in:
parent
a3590df20c
commit
eae53362b2
1 changed files with 2 additions and 0 deletions
|
|
@ -27,6 +27,8 @@ impl<'a> Iterator for ScanLines<'a> {
|
||||||
let (len, pass, num_pixels) = self.iter.next()?;
|
let (len, pass, num_pixels) = self.iter.next()?;
|
||||||
debug_assert!(self.raw_data.len() >= len);
|
debug_assert!(self.raw_data.len() >= len);
|
||||||
debug_assert!(!self.has_filter || len > 1);
|
debug_assert!(!self.has_filter || len > 1);
|
||||||
|
// The data length should always be correct here but this check assures
|
||||||
|
// the compiler that it doesn't need to account for a potential panic
|
||||||
if self.raw_data.len() < len {
|
if self.raw_data.len() < len {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue