From 538b9eb990c673ab750171d05054b0beb19216f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 3 Sep 2008 22:32:15 +0300 Subject: [PATCH] De-inhibit cancellation in interface threads --- src/interface/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface/interface.c b/src/interface/interface.c index 2b412d6760..55559fd4c6 100644 --- a/src/interface/interface.c +++ b/src/interface/interface.c @@ -221,12 +221,12 @@ static void* RunInterface( vlc_object_t *p_this ) var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text ); var_AddCallback( p_intf, "intf-add", AddIntfCallback, NULL ); + vlc_restorecancel (canc); /* Give control to the interface */ if( p_intf->pf_run ) p_intf->pf_run( p_intf ); - vlc_restorecancel (canc); return NULL; } -- 2.39.5