diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2010-11-08 13:23:18 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2010-11-08 13:23:18 +0000 |
commit | 23408de5e66b63fc8c4cdf8f511656c60d8cf3e1 (patch) | |
tree | be80a8c5213020e6b2d9ada7fc34c4d2cfaa2949 /dev-python/pygobject/files | |
parent | version bump (diff) | |
download | gentoo-2-23408de5e66b63fc8c4cdf8f511656c60d8cf3e1.tar.gz gentoo-2-23408de5e66b63fc8c4cdf8f511656c60d8cf3e1.tar.bz2 gentoo-2-23408de5e66b63fc8c4cdf8f511656c60d8cf3e1.zip |
Bump to pygobject-2.26.0-r1
- Fix crash in programs like rhythmbox using it, due to bad instance property
bindings. Bug #344459
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pygobject/files')
-rw-r--r-- | dev-python/pygobject/files/pygobject-2.26.0-nocrash.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-python/pygobject/files/pygobject-2.26.0-nocrash.patch b/dev-python/pygobject/files/pygobject-2.26.0-nocrash.patch new file mode 100644 index 000000000000..8698b7e3a190 --- /dev/null +++ b/dev-python/pygobject/files/pygobject-2.26.0-nocrash.patch @@ -0,0 +1,12 @@ +diff '--exclude-from=/home/dang/.scripts/diffrc' -up -ruN pygobject-2.26.0.orig/gi/pygi.h pygobject-2.26.0/gi/pygi.h +--- pygobject-2.26.0.orig/gi/pygi.h 2010-09-14 11:53:21.000000000 -0400 ++++ pygobject-2.26.0/gi/pygi.h 2010-11-08 08:16:13.360808932 -0500 +@@ -152,7 +152,7 @@ static inline PyObject * + pygi_get_property_value (PyGObject *instance, + const gchar *attr_name) + { +- return -1; ++ return NULL; + } + + static inline gint |