From 23b2b3b0e0f979b123a503c41ecde108e824f437 Mon Sep 17 00:00:00 2001 From: Monsta Date: Tue, 28 Oct 2014 17:42:09 +0300 Subject: zero-initialize all signals arrays --- mate-panel/libegg/eggsmclient.c | 2 +- mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'mate-panel') diff --git a/mate-panel/libegg/eggsmclient.c b/mate-panel/libegg/eggsmclient.c index 24da19b7..2f65a75e 100644 --- a/mate-panel/libegg/eggsmclient.c +++ b/mate-panel/libegg/eggsmclient.c @@ -38,7 +38,7 @@ enum { LAST_SIGNAL }; -static guint signals[LAST_SIGNAL]; +static guint signals[LAST_SIGNAL] = { 0 }; struct _EggSMClientPrivate { GKeyFile *state_file; diff --git a/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c b/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c index 0ca1861b..3b6a1102 100644 --- a/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c +++ b/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c @@ -49,7 +49,7 @@ enum { LAST_SIGNAL }; -static guint signals[LAST_SIGNAL]; +static guint signals[LAST_SIGNAL] = { 0 }; typedef struct { const gchar *name; -- cgit v1.2.1