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
fix: use usize::try_from for footer_size casts to prevent silent truncation
Replace bare `footer_size as usize` casts with `usize::try_from(footer_size)`
to prevent silent truncation on 32-bit platforms where a positive i64 value
exceeding u32::MAX would wrap. Apply consistently across table.rs and
table_changes.rs to match the pattern already used in table_deletions.rs.
0 commit comments