Use the calculated lengths instead of pointers, as 'e' being NULL will
otherwise cause undue parsing failures.
Reported-by: Karl Johnson <karljohnson.it@gmail.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
char buf[8];
s += nlen + 1;
- if ( e <= s || e - s >= ARRAY_SIZE(buf) )
+ slen -= nlen + 1;
+ if ( slen >= ARRAY_SIZE(buf) )
return -1;
- memcpy(buf, s, e - s);
- buf[e - s] = 0;
+ memcpy(buf, s, slen);
+ buf[slen] = 0;
return parse_bool(buf);
}