evas-drm: Fix uninitialized variables

Small patch to fix Coverity reported issues of uninitialized variables

Fixes CID1381306, CID1381305, CID1381304, CID1381303

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-09-20 06:26:05 -04:00
parent 2510f68ff3
commit b1d831c552
1 changed files with 2 additions and 2 deletions

View 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)