From: Mike Blumenkrantz Date: Wed, 12 Jul 2017 16:00:52 +0000 (-0400) Subject: efl-wl: free atom name when sending selection X-Git-Tag: upstream/1.20.0~269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9940cabd13f5afd9dbf1fd496123f894ad13c57a;p=platform%2Fupstream%2Fefl.git efl-wl: free atom name when sending selection CID 1377542 --- diff --git a/src/lib/efl_wl/x11.x b/src/lib/efl_wl/x11.x index f5220c1..49bc056 100644 --- a/src/lib/efl_wl/x11.x +++ b/src/lib/efl_wl/x11.x @@ -99,6 +99,7 @@ x11_send_send(Comp_Data_Device_Source *source, const char* mime_type, int32_t fd Ecore_X_Atom t, sel = ECORE_X_ATOM_SELECTION_CLIPBOARD; Comp_Data_Device_Transfer *dt; Ecore_Window win; + char *name; win = ecore_evas_window_get(ecore_evas_ecore_evas_get(source->seat->c->evas)); if (type == COMP_DATA_DEVICE_OFFER_TYPE_DND) sel = ECORE_X_ATOM_SELECTION_XDND; @@ -112,7 +113,9 @@ x11_send_send(Comp_Data_Device_Source *source, const char* mime_type, int32_t fd dt->type = type; dt->fdh = ecore_main_fd_handler_add(fd, 0, x11_offer_write, dt, NULL, NULL); dt->source = source; - dt->mime_type = eina_stringshare_add(ecore_x_atom_name_get(t)); + name = ecore_x_atom_name_get(t); + dt->mime_type = eina_stringshare_add(name); + free(name); dt->source->transfers = eina_inlist_append(dt->source->transfers, EINA_INLIST_GET(dt)); xconvertselection(ecore_x_display_get(), sel, t, comp_dnd_atom, win, ecore_x_current_time_get()); }