Commit 0005aed6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

ncurses: remove cargo cultivated vlc_object_alive()

The ncurses thread is stuck in getch(). Checking vlc_object_alive()
does not solve anything.
parent 58c27cdb
......@@ -1764,7 +1764,7 @@ static void *Run(void *data)
var_AddCallback(p_playlist, "item-change", ItemChanged, intf);
var_AddCallback(p_playlist, "playlist-item-append", PlaylistChanged, intf);
while (vlc_object_alive(intf) && !sys->exit) {
while (!sys->exit) {
UpdateInput(sys, p_playlist);
Redraw(intf);
HandleKey(intf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment