Commit bca96786 authored by Max Kellermann's avatar Max Kellermann

tag/FixString: use IsNonPrintableASCII()

Fixes breakage of non-ASCII characters, regression from commit cc72ceb3 Fixes https://github.com/MusicPlayerDaemon/MPD/issues/842
parent 814b2a21
......@@ -90,7 +90,7 @@ static const char *
find_non_printable(StringView p)
{
for (const char &ch : p)
if (!IsPrintableASCII(ch))
if (IsNonPrintableASCII(ch))
return &ch;
return nullptr;
......@@ -110,7 +110,7 @@ clear_non_printable(StringView src)
char *dest = (char *)xmemdup(src.data, src.size);
for (size_t i = first - src.data; i < src.size; ++i)
if (!IsPrintableASCII(dest[i]))
if (IsNonPrintableASCII(dest[i]))
dest[i] = ' ';
return { dest, src.size };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment