diff options
| author | Nigel Babu <nigelb@redhat.com> | 2017-02-18 14:02:30 +0530 | 
|---|---|---|
| committer | Shyamsundar Ranganathan <srangana@redhat.com> | 2017-02-23 07:14:33 -0500 | 
| commit | b584c068c6526853f82ccd2a406c3596d7d56be0 (patch) | |
| tree | 1286f0ae23df7c54a19261bbdecad55e19dfce43 /libglusterfs/src | |
| parent | afe3a0d2869b706a3d5257f39d6acb9cbe856b87 (diff) | |
libglusterfs, dht, locks, glusterd: Coverity fixes
Fix up use after free bugs and dead code
Change-Id: I8f79ed6b5108926c1fac31c147b5ecba79d10785
BUG: 1424905
Signed-off-by: Nigel Babu <nigelb@redhat.com>
Reviewed-on: https://review.gluster.org/16666
Smoke: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Reviewed-by: Shyamsundar Ranganathan <srangana@redhat.com>
Diffstat (limited to 'libglusterfs/src')
| -rw-r--r-- | libglusterfs/src/syncop.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/libglusterfs/src/syncop.c b/libglusterfs/src/syncop.c index 00a9b576269..7275f22b099 100644 --- a/libglusterfs/src/syncop.c +++ b/libglusterfs/src/syncop.c @@ -831,8 +831,10 @@ syncenv_new (size_t stacksize, int procmin, int procmax)                  newenv->procs++;          } -        if (ret != 0) +        if (ret != 0) {                  syncenv_destroy (newenv); +                newenv = NULL; +        }          return newenv;  }  | 
