diff options
author | 卜部昌平 <shyouhei@ruby-lang.org> | 2019-08-26 14:51:00 +0900 |
---|---|---|
committer | 卜部昌平 <shyouhei@ruby-lang.org> | 2019-08-27 15:52:26 +0900 |
commit | 5c7c2d9951f2512ca10ea38fecc48d8ac67502e6 (patch) | |
tree | a6a317a81bb40854ebd7dd50cf6d001f7a444fe1 /ext/zlib | |
parent | 3cae73133cfec7d5ec3f8058ec647d5163578003 (diff) | |
download | ruby-5c7c2d9951f2512ca10ea38fecc48d8ac67502e6.tar.gz |
rb_rescue / rb_rescue2 now free from ANYARGS
After 5e86b005c0f2ef30df2f9906c7e2f3abefe286a2, I now think ANYARGS is
dangerous and should be extinct. This commit deletes ANYARGS from
rb_rescue / rb_rescue2, which revealed many arity / type mismatches.
Diffstat (limited to 'ext/zlib')
-rw-r--r-- | ext/zlib/zlib.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index f1fd2b5c8a..e84e565932 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -140,7 +140,7 @@ static void gzfile_reset(struct gzfile*); static void gzfile_close(struct gzfile*, int); static void gzfile_write_raw(struct gzfile*); static VALUE gzfile_read_raw_partial(VALUE); -static VALUE gzfile_read_raw_rescue(VALUE); +static VALUE gzfile_read_raw_rescue(VALUE,VALUE); static VALUE gzfile_read_raw(struct gzfile*, VALUE outbuf); static int gzfile_read_raw_ensure(struct gzfile*, long, VALUE outbuf); static char *gzfile_read_raw_until_zero(struct gzfile*, long); @@ -2385,7 +2385,7 @@ gzfile_read_raw_partial(VALUE arg) } static VALUE -gzfile_read_raw_rescue(VALUE arg) +gzfile_read_raw_rescue(VALUE arg, VALUE _) { struct read_raw_arg *ra = (struct read_raw_arg *)arg; VALUE str = Qnil; @@ -4888,5 +4888,3 @@ Init_zlib(void) * Raised when the data length recorded in the gzip file footer is not equivalent * to the length of the actual uncompressed data. */ - - |