* thread.c (thread_shield_get_mutex): fix object to be shown in
  the message, NULL pointer is useless.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-08-03 04:35:24 +00:00
Родитель 7ac6c5e4cc
Коммит 745e01d3ca
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -4718,7 +4718,7 @@ thread_shield_get_mutex(VALUE self)
{
VALUE mutex = GetThreadShieldPtr(self);
if (!mutex)
rb_raise(rb_eThreadError, "destroyed thread shield - %p", (void *)mutex);
rb_raise(rb_eThreadError, "destroyed thread shield - %p", (void *)self);
return mutex;
}