diff options
author | monsta <[email protected]> | 2014-10-28 16:57:08 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-28 09:06:14 +0100 |
commit | 5456636eee15246e2e061633c8601daf1bc04b07 (patch) | |
tree | eccbf8777222f680c60c7d0d100255eca476d404 | |
parent | b117f07c53960be7c8acbc014cba29eb99a51cbf (diff) | |
download | mate-settings-daemon-5456636eee15246e2e061633c8601daf1bc04b07.tar.bz2 mate-settings-daemon-5456636eee15246e2e061633c8601daf1bc04b07.tar.xz |
zero-init another signals array
-rw-r--r-- | plugins/smartcard/msd-smartcard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/smartcard/msd-smartcard.c b/plugins/smartcard/msd-smartcard.c index 4f78361..bfc0334 100644 --- a/plugins/smartcard/msd-smartcard.c +++ b/plugins/smartcard/msd-smartcard.c @@ -95,7 +95,7 @@ enum { NUMBER_OF_SIGNALS }; -static guint msd_smartcard_signals[NUMBER_OF_SIGNALS]; +static guint msd_smartcard_signals[NUMBER_OF_SIGNALS] = { 0 }; G_DEFINE_TYPE (MsdSmartcard, msd_smartcard, G_TYPE_OBJECT); |