mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 05:15:12 +00:00
wayland: allow vo_wayland_uninit(NULL)
This commit is contained in:
parent
28b2fa4b7e
commit
03fee22c4d
@ -948,6 +948,9 @@ int vo_wayland_init(struct vo *vo)
|
||||
void vo_wayland_uninit(struct vo *vo)
|
||||
{
|
||||
struct vo_wayland_state *wl = vo->wayland;
|
||||
if (!wl)
|
||||
return;
|
||||
|
||||
destroy_cursor(wl);
|
||||
destroy_window(wl);
|
||||
destroy_input(wl);
|
||||
|
Loading…
Reference in New Issue
Block a user