summaryrefslogtreecommitdiff
path: root/sysutils/nautilus/patches
diff options
context:
space:
mode:
authordrochner <drochner>2004-10-27 19:33:37 +0000
committerdrochner <drochner>2004-10-27 19:33:37 +0000
commit2d74340a97a08043945269621594f94c693ee93b (patch)
tree4a506bf4e08893513776775c2e7fb436e3d9fa39 /sysutils/nautilus/patches
parent0a01feddb9220f6429047f8820b3d07c6cc328cd (diff)
downloadpkgsrc-2d74340a97a08043945269621594f94c693ee93b.tar.gz
add a patch for a libexif 0.6.x API change and depend on libexif-0.6.x
explicitely (refrain from bumping PKGREVISION - the pkg was just updated so ride on it)
Diffstat (limited to 'sysutils/nautilus/patches')
-rw-r--r--sysutils/nautilus/patches/patch-aj14
1 files changed, 14 insertions, 0 deletions
diff --git a/sysutils/nautilus/patches/patch-aj b/sysutils/nautilus/patches/patch-aj
new file mode 100644
index 00000000000..9f4c0500e98
--- /dev/null
+++ b/sysutils/nautilus/patches/patch-aj
@@ -0,0 +1,14 @@
+$NetBSD: patch-aj,v 1.1 2004/10/27 19:33:37 drochner Exp $
+
+--- components/image_properties/nautilus-image-properties-view.c.orig 2004-10-11 20:22:21.000000000 +0200
++++ components/image_properties/nautilus-image-properties-view.c
+@@ -130,7 +130,8 @@ exif_content_callback (ExifContent *cont
+ return;
+ }
+
+- attribute->value = g_strdup (exif_content_get_value (content, attribute->tag));
++ char value[1024];
++ attribute->value = g_strdup (exif_content_get_value (content, attribute->tag, value, sizeof(value)));
+ if (attribute->value != NULL) {
+ attribute->found = TRUE;
+ }