mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 06:41:31 +11:00
Fix a use-after-free in Android get_proc_address.
This commit is contained in:
parent
36538b5634
commit
8005b012ce
|
@ -263,7 +263,8 @@ impl Window {
|
|||
}
|
||||
|
||||
pub fn get_proc_address(&self, addr: &str) -> *const () {
|
||||
let addr = CString::from_slice(addr.as_bytes()).as_slice_with_nul().as_ptr();
|
||||
let addr = CString::from_slice(addr.as_bytes());
|
||||
let addr = addr.as_slice_with_nul().as_ptr();
|
||||
unsafe {
|
||||
ffi::egl::GetProcAddress(addr) as *const ()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue