aboutsummaryrefslogtreecommitdiffstats
path: root/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index ce69b00729..3dbed3829c 100644
--- a/compile.c
+++ b/compile.c
@@ -8064,9 +8064,10 @@ iseq_ibf_dump(const rb_iseq_t *iseq, VALUE opt)
header.size = ibf_dump_pos(&dump);
if (RTEST(opt)) {
- VALUE opt_str = rb_check_string_type(opt);
+ VALUE opt_str = opt;
+ const char *ptr = StringValuePtr(opt_str);
header.extra_size = RSTRING_LENINT(opt_str) + 1;
- ibf_dump_write(&dump, RSTRING_PTR(opt_str), header.extra_size);
+ ibf_dump_write(&dump, ptr, header.extra_size);
}
else {
header.extra_size = 0;