Unverified Commit a7127550 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5372 from shuujii/fix-load-64-bit-integer-from-mrb-format

Fix load 64-bit integer from mrb format; fix #5369
parents 25f60463 cb10469d
......@@ -153,6 +153,7 @@ read_irep_record_1(mrb_state *mrb, const uint8_t *bin, size_t *len, uint8_t flag
i64 <<= 32;
i64 |= bin_to_uint32(src);
src += sizeof(uint32_t);
pool[i].tt = tt;
pool[i].u.i64 = (int64_t)i64;
}
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment