diff options
author | monsta <[email protected]> | 2014-10-28 17:43:54 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-15 14:31:27 +0100 |
commit | 321de1a610aeaff984eb4177dbb4fefd27b8a4f3 (patch) | |
tree | a3b929902c7c2abef56aa1d84ed5cecc51cf1544 /egg | |
parent | cb2c9df221c016789f867cb95f61db8f21db233d (diff) | |
download | mate-session-manager-321de1a610aeaff984eb4177dbb4fefd27b8a4f3.tar.bz2 mate-session-manager-321de1a610aeaff984eb4177dbb4fefd27b8a4f3.tar.xz |
zero-init signals array
Diffstat (limited to 'egg')
-rw-r--r-- | egg/eggsmclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/egg/eggsmclient.c b/egg/eggsmclient.c index 15b4fad..0cc3818 100644 --- a/egg/eggsmclient.c +++ b/egg/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; |