Merge pull request #6627 from suetanvil/stable-3.4.0-plus-fixes

This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-09-23 07:54:35 +01:00
committed by GitHub
+1 -1
View File
@@ -1457,7 +1457,7 @@ RETRY_TRY_BLOCK:
#ifdef MRB_USE_BIGINT
{
const char *s = irep->pool[b].u.str;
regs[a] = mrb_bint_new_str(mrb, s+2, (uint8_t)s[0], s[1]);
regs[a] = mrb_bint_new_str(mrb, s+2, (uint8_t)s[0], (int8_t)s[1]);
}
break;
#else