diff options
| author | William Jon McCann <mccann@jhu.edu> | 2007-03-13 11:41:31 -0400 | 
|---|---|---|
| committer | William Jon McCann <mccann@jhu.edu> | 2007-03-13 11:41:31 -0400 | 
| commit | 4a639d92a6f1a5dd8f59d57ade37d4cff420b66a (patch) | |
| tree | cb6081df5fd92f3b3edd28d884e887fb4cc49424 /src/main.c | |
| parent | 1e7af7e9c648fb461e0d36d037d2920519159525 (diff) | |
various leak fixes
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -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: | 
