From 5c7c2d9951f2512ca10ea38fecc48d8ac67502e6 Mon Sep 17 00:00:00 2001 From: 卜部昌平 Date: Mon, 26 Aug 2019 14:51:00 +0900 Subject: 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. --- time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'time.c') diff --git a/time.c b/time.c index 40b2f06bc6..1e760f6ca5 100644 --- a/time.c +++ b/time.c @@ -5204,7 +5204,7 @@ mload_zone(VALUE time, VALUE zone) VALUE z, args[2]; args[0] = time; args[1] = zone; - z = rb_rescue(mload_findzone, (VALUE)args, (VALUE (*)(ANYARGS))NULL, Qnil); + z = rb_rescue(mload_findzone, (VALUE)args, 0, Qnil); if (NIL_P(z)) return rb_fstring(zone); if (RB_TYPE_P(z, T_STRING)) return rb_fstring(z); return z; -- cgit v1.2.3