From 4879b340a235a69fa6d68927c8e4e662e5b8cb7a Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Fri, 23 Jun 2017 10:44:09 -0500 Subject: [PATCH] Initialize the Evas_Native_Surface to 0 for dmabuf tests ref e6f17dee5d6ae504b4565afc7e5f9033cd597e22 Should probably clear this one too, though the recent native surface api changes won't cause any breakage here, future ones might. --- src/bin/e_pixmap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 9758c7e9b..ed63c18b9 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -1110,6 +1110,8 @@ e_pixmap_dmabuf_test(struct linux_dmabuf_buffer *dmabuf) int size; void *data; + memset(&ns, 0, sizeof(ns)); + if (e_comp->gl) { Eina_Bool ret;