ecore_evas: fix uninitialized variable warning

Test Plan: compilation

Reviewers: raster, zmike

Reviewed By: raster

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11871
This commit is contained in:
Vincent Torri 2020-05-23 14:55:53 +01:00 committed by Stefan Schmidt
parent c3adf72aa8
commit 614e471ab2
1 changed files with 1 additions and 1 deletions

View File

@ -5490,7 +5490,7 @@ static Eina_Bool
_deliver_cb(Ecore_Evas *ee, unsigned int seat, Ecore_Evas_Selection_Buffer buffer, const char *type, Eina_Rw_Slice *slice)
{
Ecore_Evas_Selection_Seat_Buffers *buffers;
Eina_Content *content;
Eina_Content *content = NULL;
Eina_Content *converted = NULL;
Eina_Bool result = EINA_FALSE;