зеркало из https://github.com/github/ruby.git
random.c: clear buf
* random.c (random_seed): clear temporary buffer explicitly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
be33635cd8
Коммит
678c39dc44
5
random.c
5
random.c
|
@ -600,9 +600,12 @@ make_seed_value(const uint32_t *ptr)
|
|||
static VALUE
|
||||
random_seed(void)
|
||||
{
|
||||
VALUE v;
|
||||
uint32_t buf[DEFAULT_SEED_CNT];
|
||||
fill_random_seed(buf);
|
||||
return make_seed_value(buf);
|
||||
v = make_seed_value(buf);
|
||||
explicit_bzero(buf, DEFAULT_SEED_LEN);
|
||||
return v;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче