mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
Fix bad memory being passed (due to going out of scope) to set title on X11.
This commit is contained in:
parent
41d7118a42
commit
7800b14749
|
@ -168,7 +168,8 @@ impl Window {
|
|||
let mut wm_delete_window = ffi::XInternAtom(display,
|
||||
"WM_DELETE_WINDOW".to_c_str().as_ptr() as *const libc::c_char, 0);
|
||||
ffi::XSetWMProtocols(display, window, &mut wm_delete_window, 1);
|
||||
ffi::XStoreName(display, window, mem::transmute(builder.title.as_slice().as_ptr()));
|
||||
let c_title = builder.title.to_c_str();
|
||||
ffi::XStoreName(display, window, c_title.as_ptr());
|
||||
ffi::XFlush(display);
|
||||
|
||||
wm_delete_window
|
||||
|
@ -277,9 +278,10 @@ impl Window {
|
|||
}
|
||||
|
||||
pub fn set_title(&self, title: &str) {
|
||||
let c_title = title.to_c_str();
|
||||
unsafe {
|
||||
ffi::XStoreName(self.display, self.window,
|
||||
mem::transmute(title.as_slice().as_ptr()));
|
||||
ffi::XStoreName(self.display, self.window, c_title.as_ptr());
|
||||
ffi::XFlush(self.display);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue