mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
renderer/compressor: corrected base64 decoded data size
issue: https://github.com/thorvg/thorvg/issues/2794
This commit is contained in:
parent
aece166cb7
commit
19656db676
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ size_t b64Decode(const char* encoded, const size_t len, char** decoded)
|
||||||
encoded += 4;
|
encoded += 4;
|
||||||
}
|
}
|
||||||
*decoded = output;
|
*decoded = output;
|
||||||
return reserved;
|
return idx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue