aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2023-02-10 10:33:53 -0800
committerJeremy Evans <code@jeremyevans.net>2023-03-24 12:29:00 -0700
commit6c60006de5cfd75f10a1b4a3d822e2de41d22db6 (patch)
tree846c8feffac56b046d35059a001d095c2283bda9 /io.c
parent836e9a192ba4fdc56a2d3d94f5840869f77fd3bf (diff)
downloadruby-6c60006de5cfd75f10a1b4a3d822e2de41d22db6.tar.gz
Raise ArgumentError if IO.read is provided negative offset
Fixes [Bug #19380]
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/io.c b/io.c
index a3dfa027d4..a023039209 100644
--- a/io.c
+++ b/io.c
@@ -12125,9 +12125,13 @@ static VALUE
rb_io_s_read(int argc, VALUE *argv, VALUE io)
{
VALUE opt, offset;
+ long off;
struct foreach_arg arg;
argc = rb_scan_args(argc, argv, "13:", NULL, NULL, &offset, NULL, &opt);
+ if (!NIL_P(offset) && (off = NUM2LONG(offset)) < 0) {
+ rb_raise(rb_eArgError, "negative offset %ld given", off);
+ }
open_key_args(io, argc, argv, opt, &arg);
if (NIL_P(arg.io)) return Qnil;
if (!NIL_P(offset)) {