From: Jongmin Lee Date: Thu, 19 Apr 2018 23:50:18 +0000 (+0900) Subject: ecore_wl_dnd: correct wrong variable assignment X-Git-Tag: upstream/1.21.0~1216 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc0b28cfceb67c2baa0f215dfc73d0b255633e45;p=platform%2Fupstream%2Fefl.git ecore_wl_dnd: correct wrong variable assignment Change-Id: I86110206ec3abaacf8b001333be8f7f8e0e33200 --- diff --git a/src/lib/ecore_wayland/ecore_wl_dnd.c b/src/lib/ecore_wayland/ecore_wl_dnd.c index 48c121f..35760f8 100644 --- a/src/lib/ecore_wayland/ecore_wl_dnd.c +++ b/src/lib/ecore_wayland/ecore_wl_dnd.c @@ -653,7 +653,7 @@ _ecore_wl_dnd_selection_data_receive(Ecore_Wl_Dnd_Source *source, const char *ty read_source = calloc(1, sizeof(struct _dnd_source)); if (!read_source) goto err; - read_source = source; + read_source->source = source; read_source->read_fd = p[0]; task->data = read_source; task->cb = _ecore_wl_dnd_selection_data_read;