summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-09-19 07:55:27 +0900
committerMike Blumenkrantz <zmike@osg.samsung.com>2017-10-12 10:39:16 -0400
commit09ef52889785c630f5d575adc10c45495729833f (patch)
treebb66941cff11e5c11cfc33e16161ccb804798e6c
parent80f802276fdb7f5c6b48159565b942779e1ded23 (diff)
downloadenlightenment-09ef52889785c630f5d575adc10c45495729833f.tar.gz
tiling - ensure notification struct is 0'd before use
this should fix the last 3 crashdumps reported in T6023 @fix
-rw-r--r--src/modules/tiling/e_mod_tiling.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/tiling/e_mod_tiling.c b/src/modules/tiling/e_mod_tiling.c
index ca90634481..725be7b9fe 100644
--- a/src/modules/tiling/e_mod_tiling.c
+++ b/src/modules/tiling/e_mod_tiling.c
@@ -716,6 +716,7 @@ tiling_e_client_does_not_fit(E_Client *ec)
else
eina_strbuf_append(buf, "A Window cannot be tiled\n");
+ memset(&n, 0, sizeof(n));
n.app_name = _("Tiling");
n.icon.icon = "dialog-error";
n.summary = _("Window cannot be tiled");