aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tag.c b/src/tag.c
index df32585c4..e7ce51c15 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -483,9 +483,7 @@ clear_non_printable(const char *p, size_t length)
if (first == NULL)
return NULL;
- /* duplicate and null-terminate the string */
- dest = g_memdup(p, length);
- dest[length] = 0;
+ dest = g_strndup(p, length);
for (size_t i = first - p; i < length; ++i)
if (char_is_non_printable(dest[i]))