Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'metadata.c')
-rw-r--r--metadata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/metadata.c b/metadata.c
index 6a10f8f..fe0bb01 100644
--- a/metadata.c
+++ b/metadata.c
@@ -601,7 +601,7 @@ GetImageMetadata(const char * path, char * name)
strncpyt(model, exif_entry_get_value(e, b, sizeof(b)), sizeof(model));
if( !strcasestr(model, make) )
snprintf(model, sizeof(model), "%s %s", make, exif_entry_get_value(e, b, sizeof(b)));
- m.creator = strdup(model);
+ m.creator = escape_tag(model, 1);
}
}
//DEBUG DPRINTF(E_DEBUG, L_METADATA, " * model: %s\n", model);