Hi!

I intend to upload an NMU to fix this bug. The debdiff is attached.

Greetings from Salzburg BSP
Willi
diff -Nru gtimer-2.0.0/debian/changelog gtimer-2.0.0/debian/changelog
--- gtimer-2.0.0/debian/changelog	2011-08-06 10:07:30.000000000 +0200
+++ gtimer-2.0.0/debian/changelog	2012-06-17 17:29:32.000000000 +0200
@@ -1,3 +1,10 @@
+gtimer (2.0.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix segfault due to uninitialized variable. closes: #668663.
+
+ -- Willi Mann <wi...@debian.org>  Sun, 17 Jun 2012 17:26:30 +0200
+
 gtimer (2.0.0-1) unstable; urgency=low
 
   * Update watch file
diff -Nru gtimer-2.0.0/debian/patches/fix-segfault-due-to-uninitialized-variable gtimer-2.0.0/debian/patches/fix-segfault-due-to-uninitialized-variable
--- gtimer-2.0.0/debian/patches/fix-segfault-due-to-uninitialized-variable	1970-01-01 01:00:00.000000000 +0100
+++ gtimer-2.0.0/debian/patches/fix-segfault-due-to-uninitialized-variable	2012-06-17 17:26:00.000000000 +0200
@@ -0,0 +1,17 @@
+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 <wi...@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
diff -Nru gtimer-2.0.0/debian/patches/series gtimer-2.0.0/debian/patches/series
--- gtimer-2.0.0/debian/patches/series	1970-01-01 01:00:00.000000000 +0100
+++ gtimer-2.0.0/debian/patches/series	2012-06-17 17:21:27.000000000 +0200
@@ -0,0 +1 @@
+fix-segfault-due-to-uninitialized-variable

Reply via email to