Handle NULL mime-type in drag::accept request

This commit is contained in:
Kristian Høgsberg 2010-08-27 22:17:13 -04:00
parent 3bbbd15c65
commit b571f5db6b

View File

@ -1166,10 +1166,14 @@ drag_accept(struct wl_client *client,
* request with a pointer_focus/motion event. */
drag->target = client;
end = drag->types.data + drag->types.size;
for (p = drag->types.data; p < end; p++)
if (strcmp(*p, type) == 0)
drag->type = *p;
if (type == NULL) {
drag->type = NULL;
} else {
end = drag->types.data + drag->types.size;
for (p = drag->types.data; p < end; p++)
if (strcmp(*p, type) == 0)
drag->type = *p;
}
wl_surface_post_event(drag->source, &drag->base,
WL_DRAG_TARGET, drag->type);