derekf pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=761b89b7411e0af56ea7fbd76c598c33d15e487f

commit 761b89b7411e0af56ea7fbd76c598c33d15e487f
Author: Derek Foreman <der...@osg.samsung.com>
Date:   Tue Jun 28 15:57:41 2016 -0500

    ecore_drm: Don't pass uninit garbage to drm ioctls
    
    Hasn't actually caused us any problems so far, but valgrind
    whines about it, so fixing anyway.
---
 src/lib/ecore_drm2/ecore_drm2_fb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore_drm2/ecore_drm2_fb.c 
b/src/lib/ecore_drm2/ecore_drm2_fb.c
index 4b6b9a5..58ad911 100644
--- a/src/lib/ecore_drm2/ecore_drm2_fb.c
+++ b/src/lib/ecore_drm2/ecore_drm2_fb.c
@@ -4,8 +4,8 @@ static Eina_Bool
 _fb2_create(Ecore_Drm2_Fb *fb)
 {
    struct drm_mode_fb_cmd2 cmd;
-   uint32_t hdls[4], pitches[4], offsets[4];
-   uint64_t modifiers[4];
+   uint32_t hdls[4] = { 0 }, pitches[4] = { 0 }, offsets[4] = { 0 };
+   uint64_t modifiers[4] = { 0 };
 
    hdls[0] = fb->hdl;
    pitches[0] = fb->stride;

-- 


Reply via email to