mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Check if mruby-pack template count overflow; fix #3942
This commit is contained in:
@@ -1050,6 +1050,9 @@ alias:
|
||||
count = ch - '0';
|
||||
while (tmpl->idx < tlen && isdigit(tptr[tmpl->idx])) {
|
||||
count = count * 10 + (tptr[tmpl->idx++] - '0');
|
||||
if (count < 0) {
|
||||
mrb_raisef(mrb, E_RUNTIME_ERROR, "too big template length");
|
||||
}
|
||||
}
|
||||
continue; /* special case */
|
||||
} else if (ch == '*') {
|
||||
|
||||
Reference in New Issue
Block a user