Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unaligned read of MIDIPacket::length triggers UB check in recent Rust #17

Closed
Boddlnagg opened this issue May 9, 2024 · 0 comments · Fixed by #18
Closed

Unaligned read of MIDIPacket::length triggers UB check in recent Rust #17

Boddlnagg opened this issue May 9, 2024 · 0 comments · Fixed by #18

Comments

@Boddlnagg
Copy link
Contributor

See chris-zen/coremidi#49.

Because MIDIPackets are unaligned on non-ARM platforms, accesing their length and timeStamp fields must happen through read_unaligned. But this is not needed (and would produce worse machine code) on ARM.

These checks have been added in Rust 1.70 (https://releases.rs/docs/1.70.0/, rust-lang/rust#98112).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant