ecore_wl_dnd: correct wrong variable assignment

@fix
This commit is contained in:
JongMin Lee 2018-04-20 15:28:39 +09:00 committed by Hermet Park
parent fcffd58223
commit b1caf014ef
1 changed files with 1 additions and 1 deletions

View File

@ -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;