summaryrefslogtreecommitdiff
path: root/mate-panel
diff options
context:
space:
mode:
authorMonsta <[email protected]>2014-10-28 17:42:09 +0300
committerinfirit <[email protected]>2014-11-24 22:27:35 +0100
commit23b2b3b0e0f979b123a503c41ecde108e824f437 (patch)
tree0f49fca590c5c4d3c6b25c3590cf04da9fc52084 /mate-panel
parentd37ec4b473b4191f871a02fbb04d915a222ae5ba (diff)
downloadmate-panel-23b2b3b0e0f979b123a503c41ecde108e824f437.tar.bz2
mate-panel-23b2b3b0e0f979b123a503c41ecde108e824f437.tar.xz
zero-initialize all signals arrays
Diffstat (limited to 'mate-panel')
-rw-r--r--mate-panel/libegg/eggsmclient.c2
-rw-r--r--mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c2
2 files changed, 2 insertions, 2 deletions
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;