diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-02-02 06:49:49 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-02-02 06:49:49 +0800 |
commit | ce459eec125a45bff3ba6222a64b78bf5b70d654 (patch) | |
tree | aa33abe614acd34ede25ed12edb9236154afd9fc | |
parent | 1cf08e78566b32d3a0c0bc9367b18d0725eccc1e (diff) | |
download | marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.tar marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.tar.gz marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.tar.bz2 marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.tar.lz marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.tar.xz marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.tar.zst marcuscom-ports-ce459eec125a45bff3ba6222a64b78bf5b70d654.zip |
remove not needed patch.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15151 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | x11-toolkits/gtk30/files/patch-gtk_gtkfixed.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/x11-toolkits/gtk30/files/patch-gtk_gtkfixed.c b/x11-toolkits/gtk30/files/patch-gtk_gtkfixed.c deleted file mode 100644 index a35813c2d..000000000 --- a/x11-toolkits/gtk30/files/patch-gtk_gtkfixed.c +++ /dev/null @@ -1,25 +0,0 @@ -From 62d7593fc2961966c93912cacc8059158194949c Mon Sep 17 00:00:00 2001 -From: Vincent Untz <vuntz@gnome.org> -Date: Tue, 01 Feb 2011 19:01:49 +0000 -Subject: Fix crash in gtk_fixed_remove() - -b3f6f67c changed the loop from while() to for(), but the line to move to -the next child was kept, so we could go past the end of the list. - -https://bugzilla.gnome.org/show_bug.cgi?id=641176 ---- -diff --git a/gtk/gtkfixed.c b/gtk/gtkfixed.c -index e61f03a..fd92cd7 100644 ---- gtk/gtkfixed.c -+++ gtk/gtkfixed.c -@@ -526,8 +526,6 @@ gtk_fixed_remove (GtkContainer *container, - - break; - } -- -- children = children->next; - } - } - --- -cgit v0.8.3.1 |