mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Increase capacity for skipping paddings
fix for r40342 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3e2fdaf1dd
commit
ca7431965b
1 changed files with 1 additions and 1 deletions
2
pack.c
2
pack.c
|
@ -1941,7 +1941,7 @@ pack_unpack(VALUE str, VALUE fmt)
|
|||
|
||||
case 'm':
|
||||
{
|
||||
VALUE buf = infected_str_new(0, (send - s)*3/4, str);
|
||||
VALUE buf = infected_str_new(0, (send - s + 2)*3/4, str); /* +2 is for skipping paddings */
|
||||
char *ptr = RSTRING_PTR(buf);
|
||||
int a = -1,b = -1,c = 0,d = 0;
|
||||
static signed char b64_xtable[256];
|
||||
|
|
Loading…
Reference in a new issue