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
b868503033
commit
08e6b8333f
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;
|
||||
}
|
||||
*decoded = output;
|
||||
return reserved;
|
||||
return idx;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue