ecore_evas: fix uninitialized variable warning
authorVincent Torri <vincent.torri@gmail.com>
Sat, 23 May 2020 13:55:53 +0000 (14:55 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Sun, 24 May 2020 21:32:20 +0000 (06:32 +0900)
Test Plan: compilation

Reviewers: raster, zmike

Reviewed By: raster

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11871

src/lib/ecore_evas/ecore_evas.c

index bade983..fb0ae66 100644 (file)
@@ -6270,7 +6270,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;