evas-drm: Fix uninitialized variables
authorChris Michael <cp.michael@samsung.com>
Wed, 20 Sep 2017 10:26:05 +0000 (06:26 -0400)
committerChris Michael <cp.michael@samsung.com>
Wed, 20 Sep 2017 10:26:05 +0000 (06:26 -0400)
Small patch to fix Coverity reported issues of uninitialized variables

Fixes CID1381306, CID1381305, CID1381304, CID1381303

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/modules/evas/engines/drm/evas_outbuf.c

index f78d8e1..987ff29 100644 (file)
@@ -63,7 +63,7 @@ _outbuf_setup(Evas_Engine_Info_Drm *info, int w, int h)
 {
    Outbuf *ob;
    char *num;
-   int i = 0, fw, fh;
+   int i = 0, fw = 0, fh = 0;
 
    ob = calloc(1, sizeof(Outbuf));
    if (!ob) return NULL;
@@ -159,7 +159,7 @@ _outbuf_rotation_get(Outbuf *ob)
 void
 _outbuf_reconfigure(Outbuf *ob, int w, int h, int rotation, Outbuf_Depth depth)
 {
-   int i = 0, fw, fh;
+   int i = 0, fw = 0, fh = 0;
    unsigned int format = DRM_FORMAT_ARGB8888;
 
    switch (depth)