[empathy] Correctly split and sanity check dropped contacts
- From: Sjoerd Simons <sjoerds src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [empathy] Correctly split and sanity check dropped contacts
- Date: Mon, 14 Sep 2009 22:32:53 +0000 (UTC)
commit c1b66fcb4e53cfa4207510541f2144ca605a5d98
Author: Sjoerd Simons <sjoerd simons collabora co uk>
Date: Mon Sep 14 23:21:17 2009 +0100
Correctly split and sanity check dropped contacts
libempathy-gtk/empathy-contact-list-view.c | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
---
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c
index 3424e8d..184f88a 100644
--- a/libempathy-gtk/empathy-contact-list-view.c
+++ b/libempathy-gtk/empathy-contact-list-view.c
@@ -246,13 +246,13 @@ contact_list_view_drag_data_received (GtkWidget *view,
EmpathyContactListViewPriv *priv;
EmpathyAccountManager *account_manager;
EmpathyTpContactFactory *factory = NULL;
- EmpathyAccount *account;
+ EmpathyAccount *account = NULL;
GtkTreeModel *model;
GtkTreeViewDropPosition position;
GtkTreePath *path;
const gchar *id;
gchar **strv = NULL;
- const gchar *account_id;
+ const gchar *account_id = NULL;
const gchar *contact_id;
gchar *new_group = NULL;
gchar *old_group = NULL;
@@ -298,11 +298,13 @@ contact_list_view_drag_data_received (GtkWidget *view,
context->action == GDK_ACTION_COPY ? "copy" : "",
id);
- strv = g_strsplit (id, "/", 2);
- account_id = strv[0];
- contact_id = strv[1];
- account_manager = empathy_account_manager_dup_singleton ();
- account = empathy_account_manager_get_account (account_manager, account_id);
+ account_manager = empathy_account_manager_dup_singleton ();
+ strv = g_strsplit (id, ":", 2);
+ if (g_strv_length (strv) == 2) {
+ account_id = strv[0];
+ contact_id = strv[1];
+ account = empathy_account_manager_get_account (account_manager, account_id);
+ }
if (account) {
TpConnection *connection;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]