summaryrefslogtreecommitdiff
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorTP Honey <tphoney@users.noreply.github.com>2015-05-28 13:29:43 +0100
committerTP Honey <tphoney@users.noreply.github.com>2015-05-28 13:29:43 +0100
commitc9b810cf365cbc4f87dfcee8b4eedf0b055e3569 (patch)
tree45e3ea607843a0ec02670cb5172d2951ac46dc50 /lib/puppet/parser
parentb4090184c76666e58694aa4f09a39be009a42f5f (diff)
parentcf9f7a6b7e4ede7edd612fde33f7149f9c7f3385 (diff)
Merge pull request #461 from DavidS/validate-hashes
validate_integer, validate_numeric: explicitely reject hashes in arrays
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/functions/validate_integer.rb1
-rw-r--r--lib/puppet/parser/functions/validate_numeric.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/validate_integer.rb b/lib/puppet/parser/functions/validate_integer.rb
index 995f8db..95da0c4 100644
--- a/lib/puppet/parser/functions/validate_integer.rb
+++ b/lib/puppet/parser/functions/validate_integer.rb
@@ -109,6 +109,7 @@ module Puppet::Parser::Functions
# check every element of the array
input.each_with_index do |arg, pos|
begin
+ raise TypeError if arg.is_a?(Hash)
arg = Integer(arg.to_s)
validator.call(arg)
rescue TypeError, ArgumentError
diff --git a/lib/puppet/parser/functions/validate_numeric.rb b/lib/puppet/parser/functions/validate_numeric.rb
index d2e4d16..3a14443 100644
--- a/lib/puppet/parser/functions/validate_numeric.rb
+++ b/lib/puppet/parser/functions/validate_numeric.rb
@@ -71,6 +71,7 @@ module Puppet::Parser::Functions
# check every element of the array
input.each_with_index do |arg, pos|
begin
+ raise TypeError if arg.is_a?(Hash)
arg = Float(arg.to_s)
validator.call(arg)
rescue TypeError, ArgumentError