* 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:
nobu 2015-08-06 01:50:00 +00:00
Родитель ec10c033a7
Коммит 8b6a0f7325
2 изменённых файлов: 16 добавлений и 5 удалений

Просмотреть файл

@ -1,4 +1,7 @@
Thu Aug 6 10:44:00 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
Thu Aug 6 10:49:57 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* node.c (rb_alloc_tmp_buffer): round up the size and check the
range.
* ruby_atomic.h (ATOMIC_VALUE_EXCHANGE, ATOMIC_VALUE_CAS): add
atomic operations for VALUE.

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;
}