summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-03 22:57:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-03 22:57:23 +0000
commite1d5d4e7f2dce151a2e768d0e2cea38f88185958 (patch)
tree2db2906ace5d4e1683eb78aa59196d7b5d710ad3 /thread.c
parentc51e356c680c303fe143ef7aff737e444e55d6b2 (diff)
* enc/unicode.c (onigenc_unicode_property_name_to_ctype):
remove useless assignment. * vm.c (vm_make_proc_from_block): ditto. * variable.c (rb_ivar_count): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 4063fd8dba..11c87be183 100644
--- a/thread.c
+++ b/thread.c
@@ -1387,7 +1387,6 @@ ruby_thread_stack_overflow(rb_thread_t *th)
{
th->raised_flag = 0;
#ifdef USE_SIGALTSTACK
- th->raised_flag = 0;
rb_exc_raise(sysstack_error);
#else
th->errinfo = sysstack_error;