Description: Fix Segfault due to uninitialized Variable
 A pointer intended to hold a possible error message was not initialized prior
 to being passed to the corresponding gtk function. Initialize the pointer with NULL.
Author: Willi Mann <willi@debian.org>
Bug-Debian: http://bugs.debian.org/668663

--- gtimer-2.0.0.orig/main.c
+++ gtimer-2.0.0/main.c
@@ -2027,7 +2027,7 @@ static GtkWidget *create_main_window_men
 //  GtkUIManager *uimanager;
   GtkActionGroup *actgroup;
   GtkAction *item;
-  GError *err;
+  GError *err = NULL;
 
   actgroup = gtk_action_group_new("ActionMain");
   // set translation domain and function
