diff options
author | Monsta <[email protected]> | 2014-10-28 17:06:56 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-08 21:46:03 +0100 |
commit | 327620edb07c573f7d96719288603058baaf27aa (patch) | |
tree | bbe4422442b92db14a810a962c73340486cec7a2 /shell/ev-open-recent-action.c | |
parent | bf5e5fcff80a294fd4d6e051d777ba7f9ecb76a4 (diff) | |
download | atril-327620edb07c573f7d96719288603058baaf27aa.tar.bz2 atril-327620edb07c573f7d96719288603058baaf27aa.tar.xz |
zero-init all signals arrays
Diffstat (limited to 'shell/ev-open-recent-action.c')
-rw-r--r-- | shell/ev-open-recent-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-open-recent-action.c b/shell/ev-open-recent-action.c index 557e87a6..e3aabca6 100644 --- a/shell/ev-open-recent-action.c +++ b/shell/ev-open-recent-action.c @@ -33,7 +33,7 @@ enum { static void ev_open_recent_action_init (EvOpenRecentAction *action); static void ev_open_recent_action_class_init (EvOpenRecentActionClass *class); -static guint action_signals[N_SIGNALS]; +static guint action_signals[N_SIGNALS] = { 0 }; G_DEFINE_TYPE (EvOpenRecentAction, ev_open_recent_action, GTK_TYPE_ACTION) |