[glib] gdbus-connection-slow: Fix leak in tests
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] gdbus-connection-slow: Fix leak in tests
- Date: Mon, 11 Nov 2013 06:17:17 +0000 (UTC)
commit f80e2695e1c624484a149fbd5b1c795d6b0ab519
Author: Stef Walter <stefw gnome org>
Date: Sat Nov 9 20:21:16 2013 +0100
gdbus-connection-slow: Fix leak in tests
https://bugzilla.gnome.org/show_bug.cgi?id=711802
gio/tests/gdbus-connection-slow.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/gio/tests/gdbus-connection-slow.c b/gio/tests/gdbus-connection-slow.c
index 981caf0..1ceb4e2 100644
--- a/gio/tests/gdbus-connection-slow.c
+++ b/gio/tests/gdbus-connection-slow.c
@@ -215,6 +215,8 @@ int
main (int argc,
char *argv[])
{
+ gint ret;
+
g_test_init (&argc, &argv, NULL);
/* all the tests rely on a shared main loop */
@@ -224,5 +226,8 @@ main (int argc,
g_test_add_func ("/gdbus/connection/flush", test_connection_flush);
g_test_add_func ("/gdbus/connection/large_message", test_connection_large_message);
- return g_test_run();
+
+ ret = g_test_run();
+ g_main_loop_unref (loop);
+ return ret;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]