summaryrefslogtreecommitdiff
path: root/ext/date/date_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/date_core.c')
-rw-r--r--ext/date/date_core.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/date/date_core.c b/ext/date/date_core.c
index 08328b9e8f..6474074028 100644
--- a/ext/date/date_core.c
+++ b/ext/date/date_core.c
@@ -4089,6 +4089,9 @@ d_new_by_frags(VALUE klass, VALUE hash, VALUE sg)
rb_warning("invalid start is ignored");
}
+ if (NIL_P(hash))
+ rb_raise(rb_eArgError, "invalid date");
+
if (NIL_P(ref_hash("jd")) &&
NIL_P(ref_hash("yday")) &&
!NIL_P(ref_hash("year")) &&
@@ -7853,6 +7856,9 @@ dt_new_by_frags(VALUE klass, VALUE hash, VALUE sg)
rb_warning("invalid start is ignored");
}
+ if (NIL_P(hash))
+ rb_raise(rb_eArgError, "invalid date");
+
if (NIL_P(ref_hash("jd")) &&
NIL_P(ref_hash("yday")) &&
!NIL_P(ref_hash("year")) &&