summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJongMin Lee <jm105.lee@samsung.com>2018-04-20 15:28:39 +0900
committerHermet Park <hermetpark@gmail.com>2018-04-20 15:29:44 +0900
commitb1caf014ef96f0189aa72f08639800727f3a0d8f (patch)
tree521b02e4843f9f0c8569f604c4bcd83b40458202
parentfcffd5822324725b8ca1a987569c65b4a2a7431c (diff)
downloadefl-b1caf014ef96f0189aa72f08639800727f3a0d8f.tar.gz
ecore_wl_dnd: correct wrong variable assignment
@fix
-rw-r--r--src/lib/ecore_wayland/ecore_wl_dnd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_wayland/ecore_wl_dnd.c b/src/lib/ecore_wayland/ecore_wl_dnd.c
index 48c121ffa6..35760f849d 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;