mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
gstreamer/gst-tester: Don't leak thread
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7115>
This commit is contained in:
parent
61a8d4d43d
commit
b2edab940a
1 changed files with 3 additions and 1 deletions
|
@ -156,6 +156,7 @@ main (int argc, gchar ** argv)
|
|||
GError *err = NULL;
|
||||
gchar *filename;
|
||||
gboolean is_tty = isatty (STDOUT_FILENO);
|
||||
GThread *thread;
|
||||
|
||||
if (argc < 2) {
|
||||
g_print ("1..0\nnot ok # Missing <testfile> argument\n");
|
||||
|
@ -210,9 +211,10 @@ main (int argc, gchar ** argv)
|
|||
|
||||
/* Running the subprocess in it own thread so that we can properly catch
|
||||
* interuptions in the main thread main loop */
|
||||
g_thread_new ("gst-tester-thread", (GThreadFunc) _run_app, &app);
|
||||
thread = g_thread_new ("gst-tester-thread", (GThreadFunc) _run_app, &app);
|
||||
g_main_loop_run (app.ml);
|
||||
g_main_loop_unref (app.ml);
|
||||
g_thread_join (thread);
|
||||
g_strfreev (args);
|
||||
|
||||
return app.exitcode;
|
||||
|
|
Loading…
Reference in a new issue