diff options
author | Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> | 2009-05-23 21:34:28 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:53:23 +0800 |
commit | fec609875fd59ec0d50114e638620e3d372c511e (patch) | |
tree | 45b75a929d8a03223bde7cffdb201cc6f9b7e1cb /libempathy/empathy-dispatcher.c | |
parent | 3c0044036538d3a3e4faf600c097e57f551e2d4f (diff) | |
download | gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.tar gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.tar.gz gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.tar.bz2 gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.tar.lz gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.tar.xz gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.tar.zst gsoc2013-empathy-fec609875fd59ec0d50114e638620e3d372c511e.zip |
Style fixes for *_free() functions
Diffstat (limited to 'libempathy/empathy-dispatcher.c')
-rw-r--r-- | libempathy/empathy-dispatcher.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index b8a185fed..04e248d2d 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -756,8 +756,7 @@ dispatcher_connection_got_all (TpProxy *proxy, free_find_channel_request (request); } - if (requests) - g_list_free (requests); + g_list_free (requests); g_hash_table_remove (priv->outstanding_classes_requests, proxy); } |