summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorPatricia Muscalu <patricia@axis.com>2018-12-05 17:55:14 +0100
committerSebastian Dröge <slomo@coaxion.net>2018-12-06 15:36:47 +0000
commite0adbee49a0571734303ce24d03238fc6a2d7c56 (patch)
treefac146dbf4eea5a509f76e5277bf75e2cd79a4bc /ext
parent5b8935bc77ca8af805336d0e3a5321ca983b8c5d (diff)
downloadgstreamer-plugins-bad-e0adbee49a0571734303ce24d03238fc6a2d7c56.tar.gz
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
Diffstat (limited to 'ext')
-rw-r--r--ext/curl/gstcurlbasesink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/curl/gstcurlbasesink.c b/ext/curl/gstcurlbasesink.c
index 5a790e101..58776f220 100644
--- a/ext/curl/gstcurlbasesink.c
+++ b/ext/curl/gstcurlbasesink.c
@@ -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) {