diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-09-23 21:29:15 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-09-23 21:29:15 +0800 |
commit | ea226b276392e05c8da9273d5e0dd3793362bf27 (patch) | |
tree | dfff4344234d13af7601663f1d9b058f14695a60 | |
parent | cf5784fe3e77bedfe25f3b31dff6eb92e7a580ee (diff) | |
download | gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.tar gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.tar.gz gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.tar.bz2 gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.tar.lz gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.tar.xz gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.tar.zst gsoc2013-empathy-ea226b276392e05c8da9273d5e0dd3793362bf27.zip |
Init contact_id to NULL to silent some stupid compilators. It can't really be used not initialized anyway.
-rw-r--r-- | libempathy-gtk/empathy-contact-list-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 184f88a02..737747f00 100644 --- a/libempathy-gtk/empathy-contact-list-view.c +++ b/libempathy-gtk/empathy-contact-list-view.c @@ -253,7 +253,7 @@ contact_list_view_drag_data_received (GtkWidget *view, const gchar *id; gchar **strv = NULL; const gchar *account_id = NULL; - const gchar *contact_id; + const gchar *contact_id = NULL; gchar *new_group = NULL; gchar *old_group = NULL; DndGetContactData *data; |