diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2010-12-21 17:05:39 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2010-12-21 17:05:39 +0800 |
commit | 940bae9cc720a0c2f0284b2a900926637a1f760c (patch) | |
tree | 9d85b10c8f7426be26df202ea8b9e97f883d362f /libempathy-gtk | |
parent | 1a9c70712750f38e10520b37e9452d75a55a45e9 (diff) | |
download | gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.tar gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.tar.gz gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.tar.bz2 gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.tar.lz gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.tar.xz gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.tar.zst gsoc2013-empathy-940bae9cc720a0c2f0284b2a900926637a1f760c.zip |
Fix build warning
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 4679e06f8..cccfebb51 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -387,8 +387,8 @@ contact_list_view_contact_drag_received (GtkWidget *view, { EmpathyContactListViewPriv *priv; TpAccountManager *account_manager; - TpConnection *connection; - TpAccount *account; + TpConnection *connection = NULL; + TpAccount *account = NULL; DndGetContactData *data; GtkTreePath *source_path; const gchar *sel_data; |