mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fixed util.encodings.base64.decode to not truncate results when encountering an '=' before the end of the given input.
This commit is contained in:
parent
f48883b6ab
commit
f7596f63cf
1 changed files with 5 additions and 3 deletions
|
@ -90,7 +90,7 @@ static int Lbase64_decode(lua_State *L) /** decode(s) */
|
|||
luaL_buffinit(L,&b);
|
||||
for (;;)
|
||||
{
|
||||
int c=*s++;
|
||||
int c=*s++;
|
||||
switch (c)
|
||||
{
|
||||
const char *p;
|
||||
|
@ -108,8 +108,10 @@ static int Lbase64_decode(lua_State *L) /** decode(s) */
|
|||
{
|
||||
case 1: base64_decode(&b,t[0],0,0,0,1); break;
|
||||
case 2: base64_decode(&b,t[0],t[1],0,0,2); break;
|
||||
case 3: base64_decode(&b,t[0],t[1],t[2],0,3); break;
|
||||
}
|
||||
case 3: base64_decode(&b,t[0],t[1],t[2],0,3); break;
|
||||
}
|
||||
n=0;
|
||||
break;
|
||||
case 0:
|
||||
luaL_pushresult(&b);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue