Re: [libvirt] [PATCH 4/8] util: conf: Claim the proper range for signed numbers

2016-07-18 Thread Daniel P. Berrange
On Fri, Jul 15, 2016 at 07:46:26PM +0200, Andrea Bolognani wrote: > virConfGetValueLLong() errors out if the value is too big to > fit into a long long integer, but claims the supported range > to be (0,LLONG_MAX) instead of (LLONG_MIN,LLONG_MAX). > --- > src/util/virconf.c | 4 ++-- > 1 file chan

[libvirt] [PATCH 4/8] util: conf: Claim the proper range for signed numbers

2016-07-15 Thread Andrea Bolognani
virConfGetValueLLong() errors out if the value is too big to fit into a long long integer, but claims the supported range to be (0,LLONG_MAX) instead of (LLONG_MIN,LLONG_MAX). --- src/util/virconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/virconf.c b/src/ut