input: Initialize data source to NULL

This way we do the right thing, when we get a NULL wl_resource for self-dnd.
This commit is contained in:
Kristian Høgsberg 2013-09-11 09:45:03 -07:00
parent 0abad07750
commit 1702d4cfca

View file

@ -404,7 +404,7 @@ data_device_start_drag(struct wl_client *client, struct wl_resource *resource,
struct wl_resource *icon_resource, uint32_t serial)
{
struct weston_seat *seat = wl_resource_get_user_data(resource);
struct weston_data_source *source;
struct weston_data_source *source = NULL;
struct weston_surface *icon = NULL;
if (seat->pointer->button_count == 0 ||