summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-25 08:50:53 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-25 08:50:53 +0000
commite271684d2fc7d0d3b6a86a46e2c34c7593dcb35d (patch)
tree5ff0918c1d0a8b5d9755e111342b1037c601ff2a /thread.c
parenteadc639598670c1ae04bbd2f73250eef1b1463a8 (diff)
* thread.c (rb_thread_atfork): Add small comment why we need
reset random seed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index dbe837fcce..9173833f2f 100644
--- a/thread.c
+++ b/thread.c
@@ -2800,6 +2800,8 @@ rb_thread_atfork(void)
{
rb_thread_atfork_internal(terminate_atfork_i);
GET_THREAD()->join_list_head = 0;
+
+ /* We don't want reproduce CVE-2003-0900. */
rb_reset_random_seed();
}