--- nautilus-2.6.3/components/image_properties/nautilus-image-properties-view.c.oldexif 2004-09-14 19:02:02.000000000 -0400 +++ nautilus-2.6.3/components/image_properties/nautilus-image-properties-view.c 2004-09-14 19:04:44.000000000 -0400 @@ -124,13 +124,14 @@ exif_content_callback (ExifContent *content, gpointer data) { struct ExifAttribute *attribute; + char tagdata[1024]; attribute = (struct ExifAttribute *)data; if (attribute->found) { return; } - attribute->value = g_strdup (exif_content_get_value (content, attribute->tag)); + attribute->value = g_strdup (exif_content_get_value (content, attribute->tag, tagdata, sizeof(tagdata))); if (attribute->value != NULL) { attribute->found = TRUE; }