--- ./components/image_properties/nautilus-image-properties-view.c~ 2004-09-29 10:14:24.459825880 +0200 +++ ./components/image_properties/nautilus-image-properties-view.c 2004-09-29 10:14:24.459825880 +0200 @@ -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; }