mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
node.c: check size
* node.c (rb_alloc_tmp_buffer): round up the size and check the range. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ec10c033a7
commit
8b6a0f7325
2 changed files with 16 additions and 5 deletions
16
node.c
16
node.c
|
@ -1079,10 +1079,18 @@ rb_gc_mark_node(NODE *obj)
|
|||
void *
|
||||
rb_alloc_tmp_buffer(volatile VALUE *store, long len)
|
||||
{
|
||||
NODE *s = rb_node_newnode(NODE_ALLOCA, 0, 0, 0);
|
||||
void *ptr = xmalloc(len);
|
||||
s->u1.node = ptr;
|
||||
s->u3.cnt = len / sizeof(VALUE);
|
||||
NODE *s;
|
||||
long cnt;
|
||||
void *ptr;
|
||||
|
||||
if (len < 0 || (cnt = (long)roomof(len, sizeof(VALUE))) < 0) {
|
||||
rb_raise(rb_eArgError, "negative buffer size (or size too big)");
|
||||
}
|
||||
|
||||
s = rb_node_newnode(NODE_ALLOCA, 0, 0, 0);
|
||||
ptr = xmalloc(cnt * sizeof(VALUE));
|
||||
s->u1.value = (VALUE)ptr;
|
||||
s->u3.cnt = cnt;
|
||||
*store = (VALUE)s;
|
||||
return ptr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue