diff options
Diffstat (limited to 'development/gtkdialog/gtkdialog-0.7.20-variables-export-fix.patch')
-rw-r--r-- | development/gtkdialog/gtkdialog-0.7.20-variables-export-fix.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/development/gtkdialog/gtkdialog-0.7.20-variables-export-fix.patch b/development/gtkdialog/gtkdialog-0.7.20-variables-export-fix.patch deleted file mode 100644 index 389dc1504f..0000000000 --- a/development/gtkdialog/gtkdialog-0.7.20-variables-export-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ -Submitted By: David B. Cortarello (Nomius) <nomius at users dot berlios dot de> -Date: 13-08-2008 -Initial Package Version: 0.7.20 -Description: The patch was created from the original mpd package -This patch provides the following features: - * Fix infinite loop caused by continue sentence out of frame. - -diff -Naur gtkdialog-0.7.20.orig/src/variables.c gtkdialog-0.7.20/src/variables.c ---- gtkdialog-0.7.20.orig/src/variables.c 2007-03-16 11:25:48.000000000 -0300 -+++ gtkdialog-0.7.20/src/variables.c 2008-08-13 23:13:32.000000000 -0300 -@@ -627,9 +627,10 @@ - itemlist = GTK_LIST(actual->Widget)->children; - n = 0; - while (itemlist != NULL) { -- if (itemlist->data == NULL) -+ if (itemlist->data == NULL) { - itemlist = itemlist->next; - continue; -+ } - text = gtk_object_get_user_data(itemlist->data); - if (n == 0) - tmp = g_strconcat(line, "'", text, "'", NULL); |