2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

10_ZWave.pm: report error on non-decimal input

git-svn-id: https://svn.fhem.de/fhem/trunk@8461 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-04-21 13:32:44 +00:00
parent d2570e4fbf
commit e575fa3900

View File

@ -506,6 +506,13 @@ ZWave_Cmd($$@)
return "$type $cmd needs $parTxt" if($nArg != int(@a));
}
if($cmdFmt !~ m/%s/) {
for(my $i1 = 0; $i1<int(@a); $i1++) {
return "Error: $a[$i1] is not a decimal number"
if($a[$i1] !~ m/^[-\d]+$/);
}
}
if($cmd =~ m/^config/) {
my ($err, $cmd) = ZWave_configCheckParam($hash, $type, $cmd, $cmdFmt, @a);
return $err if($err);