Fix a use-after-free in Android get_proc_address.

This commit is contained in:
Ms2ger 2015-01-23 19:24:42 +01:00
parent 36538b5634
commit 8005b012ce

View file

@ -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 ()
}