summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/common-utils.c
diff options
context:
space:
mode:
authorSakshi <sabansal@redhat.com>2015-04-15 13:28:24 +0530
committerJeff Darcy <jdarcy@redhat.com>2016-04-14 05:55:50 -0700
commitd5409aae63a7ac5e5b3ea6cfa16c6250a028291c (patch)
tree9da5485f7ef56dd7adca9d7dddf2cbcdf4827cb9 /libglusterfs/src/common-utils.c
parent1c9c776352c60deeda51be66fda6d44bf06d3796 (diff)
libglusterfs: coverity fix
fix missing varargs cleanup CID 1124856: string overflow CID 1124656: NULL return CID 1124374: constant expression Change-Id: Iead530c599bdfef05a40c68b892215f4e4f02247 BUG: 789278 Signed-off-by: Sakshi Bansal <sabansal@redhat.com> Reviewed-on: http://review.gluster.org/9630 Smoke: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'libglusterfs/src/common-utils.c')
-rw-r--r--libglusterfs/src/common-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/common-utils.c b/libglusterfs/src/common-utils.c
index a1b67596c6e..ac8babcc8ad 100644
--- a/libglusterfs/src/common-utils.c
+++ b/libglusterfs/src/common-utils.c
@@ -1363,7 +1363,7 @@ gf_string2int64 (const char *str, int64_t *n)
if (rv != 0)
return rv;
- if ((l >= INT64_MIN) && (l <= INT64_MAX)) {
+ if (l <= INT64_MAX) {
*n = (int64_t) l;
return 0;
}