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
In line 184, the code will transmute type of &u8 to &u32 which will create a misaligned pointer, and the pointer is dereferenced in line 185 which will lead to undefined behavior. Is there any test function for read_next_value?
The text was updated successfully, but these errors were encountered:
Hi, I found some potential unsoundness in safe method
read_next_value
:d4-format/d4/src/ssio/view.rs
Lines 177 to 185 in f8c0087
In line 184, the code will transmute type of
&u8
to&u32
which will create a misaligned pointer, and the pointer is dereferenced in line 185 which will lead to undefined behavior. Is there any test function forread_next_value
?The text was updated successfully, but these errors were encountered: