svg_loader: image tag: fixed utf8 decode

Fixed svgUtilURLDecode function.
Deleted snippet was not needed and it broken decoding when space.
This commit is contained in:
Michal Maciola 2021-07-13 11:26:15 +02:00 committed by JunsuChoi
parent 8e1d8b0cb2
commit 30a3d442b9

View file

@ -271,11 +271,6 @@ string svgUtilURLDecode(const char *src)
char a, b;
while (*src) {
if (*src <= 0x20) {
++src;
continue;
}
if (*src == '%' &&
((a = src[1]) && (b = src[2])) &&
(isxdigit(a) && isxdigit(b))) {