gtk-rs / gtk-rs-core

Rust bindings for GNOME libraries
https://gtk-rs.org/gtk-rs-core
MIT License
280 stars 112 forks source link

glib: Don't misuse `slice::get_unchecked()` #1337

Closed sdroege closed 6 months ago

sdroege commented 6 months ago

It will panic in debug builds when trying to access indices outside the slice. Instead, use pointer operations here to check that there is a NULL at the end of the array.