Bugfix: wrong input validation in set_layer_height_ranges(). #2105
This commit is contained in:
parent
95c121f4c7
commit
4bf23c67bb
@ -252,7 +252,7 @@ T_LAYER_HEIGHT_RANGES
|
||||
coordf_t vals[3];
|
||||
for (unsigned int j = 0; j < 3; ++j) {
|
||||
SV *elem_elem = *av_fetch(elemAV, j, 0);
|
||||
if (!SvNOK(elem_elem)) {
|
||||
if (!looks_like_number(elem_elem)) {
|
||||
Perl_croak(
|
||||
aTHX_ \"%s: layer ranges and heights must be numbers\",
|
||||
${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]});
|
||||
|
Loading…
Reference in New Issue
Block a user