You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a surveillance footage that has a size zero BoxHeader, which causes dead-looping in reader.rs line 30 "while current < size ..."
suggest:
while current < size {
// Get box header.
let header = BoxHeader::read(&mut reader)?;
let BoxHeader { name, size: s } = header;
if s == 0 {
break;
}