soup: fix thread name

thread names should be below 16char, otherwise they won't be shown on
linux.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6738>
This commit is contained in:
Tim Blechmann 2024-04-26 09:45:22 +08:00 committed by Backport Bot
parent 974208538f
commit e6480f6913

View file

@ -1169,7 +1169,7 @@ gst_soup_http_src_session_open (GstSoupHTTPSrc * src)
/* now owned by the loop */
g_main_context_unref (ctx);
src->session->thread = g_thread_try_new ("souphttpsrc-thread",
src->session->thread = g_thread_try_new ("souphttpsrc",
thread_func, src, NULL);
if (!src->session->thread) {