mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
fixed thread lock mis-merge
Original commit message from CVS: fixed thread lock mis-merge
This commit is contained in:
parent
247c0f1e90
commit
43b635e3d0
1 changed files with 1 additions and 2 deletions
|
@ -265,9 +265,8 @@ gst_thread_change_state (GstElement *element)
|
|||
GST_DEBUG (GST_CAT_THREAD, "creating thread \"%s\"\n",
|
||||
GST_ELEMENT_NAME (GST_ELEMENT (element)));
|
||||
|
||||
g_mutex_lock(thread->lock);
|
||||
|
||||
g_mutex_lock (thread->lock);
|
||||
|
||||
// create the thread
|
||||
pthread_create (&thread->thread_id, NULL,
|
||||
gst_thread_main_loop, thread);
|
||||
|
|
Loading…
Reference in a new issue