From: Nick Porter Date: Tue, 16 Aug 2022 07:21:59 +0000 (+0100) Subject: slen always < 0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24abdc74d4dac259b2b4c0162f79b954045c62ee;p=thirdparty%2Ffreeradius-server.git slen always < 0 --- diff --git a/src/lib/util/value.c b/src/lib/util/value.c index 4e2588d7990..53568bc6ecb 100644 --- a/src/lib/util/value.c +++ b/src/lib/util/value.c @@ -4826,7 +4826,7 @@ parse: * For barewords we also allow 0 for false and any other * integer value for true. */ - if ((slen < 0) && (!rules->escapes)) { + if (!rules->escapes) { int64_t stmp; uint64_t utmp;