Skip to content

Commit

Permalink
Merge pull request #2 from cmrd-senya/patch-1
Browse files Browse the repository at this point in the history
Debian backport: Fix Segfault due to uninitialized Variable
  • Loading branch information
craigk5n authored Feb 27, 2018
2 parents 8184112 + 9e13cdd commit 86df1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2027,7 +2027,7 @@ static GtkWidget *create_main_window_menu_bar()
// GtkUIManager *uimanager;
GtkActionGroup *actgroup;
GtkAction *item;
GError *err;
GError *err = NULL;

actgroup = gtk_action_group_new("ActionMain");
// set translation domain and function
Expand Down

0 comments on commit 86df1d1

Please sign in to comment.