mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
unpack.c: unpack_BER() did assume the string length is not zero.
This commit is contained in:
@@ -414,6 +414,7 @@ unpack_BER(mrb_state *mrb, const unsigned char *src, int srclen, mrb_value ary,
|
||||
const unsigned char *p = src;
|
||||
const unsigned char *e = p + srclen;
|
||||
|
||||
if (srclen == 0) return 0;
|
||||
for (i=1; p<e; p++,i++) {
|
||||
if (n > (MRB_INT_MAX>>7)) {
|
||||
mrb_raise(mrb, E_RANGE_ERROR, "BER unpacking 'w' overflow");
|
||||
|
||||
Reference in New Issue
Block a user