summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccann@jhu.edu>2007-03-13 11:41:31 -0400
committerWilliam Jon McCann <mccann@jhu.edu>2007-03-13 11:41:31 -0400
commit4a639d92a6f1a5dd8f59d57ade37d4cff420b66a (patch)
treecb6081df5fd92f3b3edd28d884e887fb4cc49424 /src/main.c
parent1e7af7e9c648fb461e0d36d037d2920519159525 (diff)
various leak fixes
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 3035b31..446b291 100644
--- a/src/main.c
+++ b/src/main.c
@@ -285,13 +285,15 @@ main (int argc,
loop = g_main_loop_new (NULL, FALSE);
if (do_timed_exit) {
- g_timeout_add (3000 * 60, (GSourceFunc) timed_exit_cb, loop);
+ g_timeout_add (1000 * 30, (GSourceFunc) timed_exit_cb, loop);
}
g_main_loop_run (loop);
g_object_unref (manager);
+ g_main_loop_unref (loop);
+
ret = 0;
out: