array.c: fix array size
* array.c (rb_ary_permutation): `p` is the array of size `r`, as commented at permute0(). since `n >= r` here, buffer overflow never happened, just reduce unnecessary allocation though. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0f25a80835
commit
e6f1557562
@ -1,3 +1,9 @@
|
||||
Fri Jun 13 13:42:58 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* array.c (rb_ary_permutation): `p` is the array of size `r`, as
|
||||
commented at permute0(). since `n >= r` here, buffer overflow
|
||||
never happened, just reduce unnecessary allocation though.
|
||||
|
||||
Thu Jun 12 20:32:28 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* string.c (rb_str_resize): should consider the capacity instead
|
||||
|
2
array.c
2
array.c
@ -4858,7 +4858,7 @@ rb_ary_permutation(int argc, VALUE *argv, VALUE ary)
|
||||
}
|
||||
}
|
||||
else { /* this is the general case */
|
||||
volatile VALUE t0 = tmpbuf(n,sizeof(long));
|
||||
volatile VALUE t0 = tmpbuf(r,sizeof(long));
|
||||
long *p = (long*)RSTRING_PTR(t0);
|
||||
volatile VALUE t1 = tmpbuf(n,sizeof(char));
|
||||
char *used = (char*)RSTRING_PTR(t1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user