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

Fix cut&paste error in 1014a2aa

parent 365c6109
...@@ -180,6 +180,7 @@ static int vlclua_lock_and_wait( lua_State *L ) ...@@ -180,6 +180,7 @@ static int vlclua_lock_and_wait( lua_State *L )
vlc_object_wait( p_this ); vlc_object_wait( p_this );
b_quit = vlc_object_alive( p_this ); b_quit = vlc_object_alive( p_this );
} }
vlc_object_unlock( p_this );
lua_pushboolean( L, b_quit ); lua_pushboolean( L, b_quit );
return 1; return 1;
} }
......
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