tests: fix memleak when destroying test server

This commit is contained in:
Julian Bouzas 2020-02-24 10:45:56 -05:00
parent 8e719eb47c
commit 46aaa9ef4f

View file

@ -41,4 +41,5 @@ wp_test_server_teardown (WpTestServer *self)
pw_thread_loop_stop (self->thread_loop);
pw_context_destroy (self->context);
pw_thread_loop_destroy (self->thread_loop);
g_free (self->name);
}