summaryrefslogtreecommitdiff
path: root/ext/date
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-12 23:48:18 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-12 23:48:18 +0000
commite8b3d0decfa58776fab3492ae6406e58ad60a05c (patch)
tree0f7c479754b47d33490500b2db31e070fbc776da /ext/date
parentee13ed7e84410683a37834e5674a096a0e82d2ec (diff)
* ext/date/date_core.c: [ruby-core:38855].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/date')
-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")) &&