mirror of https://github.com/mpv-player/mpv
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)
|
void vo_wayland_uninit(struct vo *vo)
|
||||||
{
|
{
|
||||||
struct vo_wayland_state *wl = vo->wayland;
|
struct vo_wayland_state *wl = vo->wayland;
|
||||||
|
if (!wl)
|
||||||
|
return;
|
||||||
|
|
||||||
destroy_cursor(wl);
|
destroy_cursor(wl);
|
||||||
destroy_window(wl);
|
destroy_window(wl);
|
||||||
destroy_input(wl);
|
destroy_input(wl);
|
||||||
|
|
Loading…
Reference in New Issue