mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
curlbasesink: Rename curl transfer thread
Some systems restrict the length of thread names to 16 bytes. https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/838
This commit is contained in:
parent
5b8935bc77
commit
e0adbee49a
1 changed files with 1 additions and 2 deletions
|
@ -1129,8 +1129,7 @@ gst_curl_base_sink_transfer_start_unlocked (GstCurlBaseSink * sink)
|
|||
GST_LOG ("creating transfer thread");
|
||||
sink->transfer_thread_close = FALSE;
|
||||
sink->new_file = TRUE;
|
||||
sink->transfer_thread =
|
||||
g_thread_try_new ("Curl Transfer Thread", (GThreadFunc)
|
||||
sink->transfer_thread = g_thread_try_new ("curl-transfer", (GThreadFunc)
|
||||
gst_curl_base_sink_transfer_thread_func, sink, &error);
|
||||
|
||||
if (sink->transfer_thread == NULL || error != NULL) {
|
||||
|
|
Loading…
Reference in a new issue