aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.h
diff options
context:
space:
mode:
Diffstat (limited to 'iseq.h')
-rw-r--r--iseq.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/iseq.h b/iseq.h
index 4d95a7a135..9a225180df 100644
--- a/iseq.h
+++ b/iseq.h
@@ -76,8 +76,12 @@ PACKED_STRUCT_UNALIGNED(struct iseq_catch_table {
static inline int
iseq_catch_table_bytes(int n)
{
- return sizeof(struct iseq_catch_table) +
- (n - 1) * sizeof(struct iseq_catch_table_entry);
+ enum {
+ catch_table_entries_max = (INT_MAX - sizeof(struct iseq_catch_table)) / sizeof(struct iseq_catch_table_entry)
+ };
+ if (n > catch_table_entries_max) rb_fatal("too large iseq_catch_table - %d", n);
+ return (int)(sizeof(struct iseq_catch_table) +
+ (n - 1) * sizeof(struct iseq_catch_table_entry));
}
#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)