`rb_scan_args` never fills optional arguments with `Qundef`

This commit is contained in:
Nobuyoshi Nakada 2023-03-03 15:52:24 +09:00
Родитель 883871d722
Коммит 8ee604b9d4
1 изменённых файлов: 2 добавлений и 2 удалений

4
re.c
Просмотреть файл

@ -3937,11 +3937,11 @@ reg_extract_args(int argc, VALUE *argv, struct reg_init_args *args)
str = RREGEXP_SRC(re);
}
else {
if (!UNDEF_P(opts)) {
if (!NIL_P(opts)) {
int f;
if (FIXNUM_P(opts)) flags = FIX2INT(opts);
else if ((f = str_to_option(opts)) >= 0) flags = f;
else if (!NIL_P(opts) && rb_bool_expected(opts, "ignorecase", FALSE))
else if (rb_bool_expected(opts, "ignorecase", FALSE))
flags = ONIG_OPTION_IGNORECASE;
}
str = StringValue(src);