aboutsummaryrefslogtreecommitdiff
path: root/graphics/eog2
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/eog2')
-rw-r--r--graphics/eog2/files/patch-libeog_eog-info-view.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/graphics/eog2/files/patch-libeog_eog-info-view.c b/graphics/eog2/files/patch-libeog_eog-info-view.c
new file mode 100644
index 000000000000..a9050fa7cccc
--- /dev/null
+++ b/graphics/eog2/files/patch-libeog_eog-info-view.c
@@ -0,0 +1,24 @@
+--- libeog/eog-info-view.c.orig Wed Oct 13 16:42:12 2004
++++ libeog/eog-info-view.c Wed Oct 13 16:43:41 2004
+@@ -246,6 +246,7 @@
+ EogInfoView *view;
+ EogInfoViewPrivate *priv;
+ char *path;
++ char entryval[4096];
+
+ 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, entryval, sizeof(entryval)));
+ }
+ 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, entryval, sizeof(entryval)));
+
+ g_hash_table_insert (priv->id_path_hash,
+ GINT_TO_POINTER (entry->tag),