summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2009-01-31 16:14:49 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2009-01-31 16:14:49 +0000
commite2a5ea56bd096e2c6961076cf6b0dc35d7de3f2c (patch)
tree54eb32c879cac9a7ce66cd7387aa3fcbbf3a6713 /media-gfx/eog/files
parentBump to 2.4.4. Lot of changes on PTP2 driver and bug fixes. (diff)
downloadgentoo-2-e2a5ea56bd096e2c6961076cf6b0dc35d7de3f2c.tar.gz
gentoo-2-e2a5ea56bd096e2c6961076cf6b0dc35d7de3f2c.tar.bz2
gentoo-2-e2a5ea56bd096e2c6961076cf6b0dc35d7de3f2c.zip
Clean up old revisions.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/eog/files')
-rw-r--r--media-gfx/eog/files/eog-2.24.2-sigbus.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/media-gfx/eog/files/eog-2.24.2-sigbus.patch b/media-gfx/eog/files/eog-2.24.2-sigbus.patch
deleted file mode 100644
index 6f050f62f809..000000000000
--- a/media-gfx/eog/files/eog-2.24.2-sigbus.patch
+++ /dev/null
@@ -1,19 +0,0 @@
----
- http://bugzilla.gnome.org/show_bug.cgi?id=564526
- https://bugs.gentoo.org/show_bug.cgi?id=250830
-
- eog-metadata-reader-png.c | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
---- a/src/eog-metadata-reader-png.c
-+++ b/src/eog-metadata-reader-png.c
-@@ -369,8 +369,7 @@
- if (priv->state == EMR_CHECK_CRC) {
- /* Check if it is actually an XMP chunk.
- * Throw it away if not. */
-- if ((memcmp (priv->xmp_chunk, "XML:com.adobe.xmp\0", 18) != 0)
-- || (*(guint32*)(priv->xmp_chunk+18)) != 0) {
-+ if (memcmp (priv->xmp_chunk, "XML:com.adobe.xmp\0\0\0\0\0", 22) != 0) {
- priv->state = EMR_SKIP_CRC;
- g_free (priv->xmp_chunk);
- priv->xmp_chunk = NULL;