summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-10-09 19:19:42 +0200
committerAlexander Larsson <alexl@redhat.com>2009-10-20 13:09:19 +0200
commit4bd9cb8d3e1b59667334550472b1ffd6a6768e73 (patch)
tree664ed4e1421131dd942c5561897a06bae35cd60a
parentaf69ce7e9ba5e5150e28aad3d78f8dc8117846ce (diff)
downloadnautilus-4bd9cb8d3e1b59667334550472b1ffd6a6768e73.tar.gz
Always check if the drag dest supports the source.
In the "drag-motion" callback, make sure we check for target != GDK_NONE before getting non-existent data for it.
-rw-r--r--libnautilus-private/nautilus-dnd.c9
-rw-r--r--src/nautilus-places-sidebar.c17
2 files changed, 21 insertions, 5 deletions
diff --git a/libnautilus-private/nautilus-dnd.c b/libnautilus-private/nautilus-dnd.c
index b7e1df2cf..15b6395ed 100644
--- a/libnautilus-private/nautilus-dnd.c
+++ b/libnautilus-private/nautilus-dnd.c
@@ -1010,7 +1010,7 @@ nautilus_drag_selection_includes_special_link (GList *selection_list)
return FALSE;
}
-static void
+static gboolean
slot_proxy_drag_motion (GtkWidget *widget,
GdkDragContext *context,
int x,
@@ -1038,6 +1038,11 @@ slot_proxy_drag_motion (GtkWidget *widget,
if (!drag_info->have_data) {
target = gtk_drag_dest_find_target (widget, context, NULL);
+
+ if (target == GDK_NONE) {
+ goto out;
+ }
+
gtk_drag_get_data (widget, context, target, time);
}
@@ -1079,6 +1084,8 @@ out:
}
gdk_drag_status (context, action, time);
+
+ return TRUE;
}
static void
diff --git a/src/nautilus-places-sidebar.c b/src/nautilus-places-sidebar.c
index ce1c549a7..4d4f76f28 100644
--- a/src/nautilus-places-sidebar.c
+++ b/src/nautilus-places-sidebar.c
@@ -826,7 +826,7 @@ compute_drop_position (GtkTreeView *tree_view,
}
-static void
+static gboolean
get_drag_data (GtkTreeView *tree_view,
GdkDragContext *context,
unsigned int time)
@@ -837,8 +837,14 @@ get_drag_data (GtkTreeView *tree_view,
context,
NULL);
+ if (target == GDK_NONE) {
+ return FALSE;
+ }
+
gtk_drag_get_data (GTK_WIDGET (tree_view),
context, target, time);
+
+ return TRUE;
}
static void
@@ -904,7 +910,9 @@ drag_motion_callback (GtkTreeView *tree_view,
char *uri;
if (!sidebar->drag_data_received) {
- get_drag_data (tree_view, context, time);
+ if (!get_drag_data (tree_view, context, time)) {
+ return FALSE;
+ }
}
compute_drop_position (tree_view, x, y, &path, &pos, sidebar);
@@ -1245,10 +1253,11 @@ drag_drop_callback (GtkTreeView *tree_view,
unsigned int time,
NautilusPlacesSidebar *sidebar)
{
+ gboolean retval = FALSE;
sidebar->drop_occured = TRUE;
- get_drag_data (tree_view, context, time);
+ retval = get_drag_data (tree_view, context, time);
g_signal_stop_emission_by_name (tree_view, "drag-drop");
- return TRUE;
+ return retval;
}
/* Callback used when the file list's popup menu is detached */