aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-01 14:14:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-01 14:14:07 +0000
commitc56d9aaabf8f4886e1ba69d24024727ab905aed4 (patch)
tree7e4a89a484db3822d8c21967bac22a2e65567722 /thread.c
parentd58f17f37d3c169d7acfe3860872519d44144ddf (diff)
downloadruby-c56d9aaabf8f4886e1ba69d24024727ab905aed4.tar.gz
thread.c: check name argument
* thread.c (rb_thread_setname): check the argument if valid string. [ruby-core:71774] [Bug #11756] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52834 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index 7190a943bd..62713e80aa 100644
--- a/thread.c
+++ b/thread.c
@@ -2776,6 +2776,7 @@ rb_thread_setname(VALUE thread, VALUE name)
{
rb_thread_t *th;
GetThreadPtr(thread, th);
+ StringValueCStr(name);
th->name = rb_str_new_frozen(name);
#if defined(HAVE_PTHREAD_SETNAME_NP)
# if defined(__linux__)