diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-06-30 15:26:11 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-06-30 15:26:11 +0000 |
commit | fe0debc88fd70af16cbcff8da3cbe431939264ff (patch) | |
tree | 4b9088723725ea4f867ce03142bfdad38a7dbcbb /hardinfo2/syncmanager.c | |
parent | 8552975a1df02e3d1518310f834b3787f3e5fb48 (diff) |
Plug more memleaks.
Diffstat (limited to 'hardinfo2/syncmanager.c')
-rw-r--r-- | hardinfo2/syncmanager.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/hardinfo2/syncmanager.c b/hardinfo2/syncmanager.c index f1f1de04..c35893f1 100644 --- a/hardinfo2/syncmanager.c +++ b/hardinfo2/syncmanager.c @@ -153,7 +153,7 @@ static SoupXmlrpcValue *_soup_get_xmlrpc_value(SoupMessage *msg, SyncNetAction * SNA_ERROR(3, "No response value in XML-RPC response"); } - /* g_object_unref(response); */ + /*g_object_unref(response);*/ bad: return value; } @@ -413,10 +413,9 @@ static void sync_dialog_start_sync(SyncDialog *sd) session = soup_session_async_new_with_options(SOUP_SESSION_TIMEOUT, 10, SOUP_SESSION_PROXY_URI, proxy, NULL); - /* Crashes if we unref the proxy? O_o - if (proxy) - g_object_unref(proxy); - */ + /* Crashes if we unref the proxy? O_o */ + /*if (proxy) + g_object_unref(proxy);*/ } loop = g_main_loop_new(NULL, TRUE); |