diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-13 16:45:10 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-13 16:45:10 +0000 |
commit | 4b78b89cabd554c95be09d4e0354db80bddcf15c (patch) | |
tree | 4ea96aee05e218f54974b72d0251f0c07cf610d9 /graphics/eog2 | |
parent | 6f5563f48ab38f8ceb8f557649175a52704f74ab (diff) | |
download | ports-4b78b89cabd554c95be09d4e0354db80bddcf15c.tar.gz ports-4b78b89cabd554c95be09d4e0354db80bddcf15c.zip |
Notes
Diffstat (limited to 'graphics/eog2')
-rw-r--r-- | graphics/eog2/files/patch-libeog_eog-info-view.c | 24 |
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), |