ruby-changes:44106
From: hsbt <ko1@a...>
Date: Sat, 17 Sep 2016 22:46:13 +0900 (JST)
Subject: [ruby-changes:44106] hsbt:r56179 (trunk): * vm_insnhelper.c (vm_throw_start): Remove too much "; "
hsbt 2016-09-17 22:46:07 +0900 (Sat, 17 Sep 2016) New Revision: 56179 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56179 Log: * vm_insnhelper.c (vm_throw_start): Remove too much ";" [fix GH-1432] Modified files: trunk/ChangeLog trunk/vm_insnhelper.c Index: ChangeLog =================================================================== --- ChangeLog (revision 56178) +++ ChangeLog (revision 56179) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Sep 17 22:46:02 2016 Koichi ITO <koic.ito@g...> + + * vm_insnhelper.c (vm_throw_start): Remove too much ";" + [fix GH-1432] + Sat Sep 17 19:19:06 2016 Kazuki Yamaguchi <k@r...> * test/openssl/test_ssl.rb (test_ctx_options): Fix test failure on Index: vm_insnhelper.c =================================================================== --- vm_insnhelper.c (revision 56178) +++ vm_insnhelper.c (revision 56179) @@ -1039,7 +1039,7 @@ vm_throw_start(rb_thread_t *const th, rb https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L1039 int i; for (i=0; i<ct_size; i++) { - const struct iseq_catch_table_entry * const entry = &ct->entries[i];; + const struct iseq_catch_table_entry * const entry = &ct->entries[i]; if (entry->type == CATCH_TYPE_BREAK && entry->start < epc && entry->end >= epc) { if (entry->cont == epc) { /* found! */ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/