Commit 27be238b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix segfault in seekpoints updater

Close #8199
parent a46dff02
......@@ -50,6 +50,9 @@ void SeekPoints::update()
vlc_object_release( p_input_thread );
if( !p_title )
return;
/* lock here too, as update event is triggered by an external thread */
if ( !access() ) return;
pointsList.clear();
......
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