blob: 0f8441fabe63717dc498d2bc64bc4b20cd905689 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- components/image_properties/nautilus-image-properties-view.c.orig Thu Sep 30 15:41:33 2004
+++ components/image_properties/nautilus-image-properties-view.c Thu Sep 30 15:43:11 2004
@@ -130,7 +130,8 @@
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;
}
|