1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* compile.c (iseq_set_exception_table): allocates catch_table only

when entries exist.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-04-20 06:00:51 +00:00
parent 9ddb37f071
commit 36f984b65e
2 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,7 @@
Sun Apr 20 14:58:57 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
Sun Apr 20 15:00:48 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c (iseq_set_exception_table): allocates catch_table only
when entries exist.
* compile.c (struct iseq_link_element, struct iseq_insn_data): made
enum for debuggers.

View file

@ -1290,7 +1290,7 @@ iseq_set_exception_table(rb_iseq_t *iseq)
tlen = RARRAY_LEN(iseq->compile_data->catch_table_ary);
tptr = RARRAY_PTR(iseq->compile_data->catch_table_ary);
iseq->catch_table = ALLOC_N(struct iseq_catch_table_entry, tlen);
iseq->catch_table = tlen ? ALLOC_N(struct iseq_catch_table_entry, tlen) : 0;
iseq->catch_table_size = tlen;
for (i = 0; i < tlen; i++) {