summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott W Taylor <swtaylor@gentoo.org>2004-09-28 21:43:53 +0000
committerScott W Taylor <swtaylor@gentoo.org>2004-09-28 21:43:53 +0000
commitd986a4c0d5249cea9402c451d9438f42101df9d5 (patch)
treea44decb8297c0a004da97558e0e85c251b71d058 /media-gfx/eog/files
parentBump revision to carry out mozilla.eclass change: don't use typeaheadfind on ... (diff)
downloadgentoo-2-d986a4c0d5249cea9402c451d9438f42101df9d5.tar.gz
gentoo-2-d986a4c0d5249cea9402c451d9438f42101df9d5.tar.bz2
gentoo-2-d986a4c0d5249cea9402c451d9438f42101df9d5.zip
plays nicely with libexif-0.6
Diffstat (limited to 'media-gfx/eog/files')
-rw-r--r--media-gfx/eog/files/eog-2.6.1-libexif-0.6.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/media-gfx/eog/files/eog-2.6.1-libexif-0.6.patch b/media-gfx/eog/files/eog-2.6.1-libexif-0.6.patch
new file mode 100644
index 000000000000..d8ce462efdca
--- /dev/null
+++ b/media-gfx/eog/files/eog-2.6.1-libexif-0.6.patch
@@ -0,0 +1,24 @@
+--- libeog/eog-info-view.c.orig 2004-09-28 13:41:23.987814033 -0600
++++ libeog/eog-info-view.c 2004-09-28 13:43:09.522474289 -0600
+@@ -246,6 +246,7 @@
+ EogInfoView *view;
+ EogInfoViewPrivate *priv;
+ char *path;
++ char b[1024];
+
+ view = EOG_INFO_VIEW (data);
+ priv = view->priv;
+@@ -255,11 +256,11 @@
+ path = g_hash_table_lookup (priv->id_path_hash, GINT_TO_POINTER (entry->tag));
+
+ if (path != NULL) {
+- set_row_data (store, path, exif_tag_get_name (entry->tag), exif_entry_get_value (entry));
++ set_row_data (store, path, exif_tag_get_name (entry->tag), exif_entry_get_value (entry, b, sizeof(b)));
+ }
+ else {
+ path = set_row_data (store, NULL,
+- exif_tag_get_name (entry->tag), exif_entry_get_value (entry));
++ exif_tag_get_name (entry->tag), exif_entry_get_value (entry, b, sizeof(b)));
+
+ g_hash_table_insert (priv->id_path_hash,
+ GINT_TO_POINTER (entry->tag),