summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/dict.c
diff options
context:
space:
mode:
authorSunil Kumar Acharya <sheggodu@redhat.com>2018-08-06 22:00:00 +0530
committerAmar Tumballi <amarts@redhat.com>2018-08-16 06:16:57 +0000
commit4bc20f6d3163933e49eb95cff698266e908133e1 (patch)
tree3c28526f7481a6d3a1829cd0c4aa2df74ce186cf /libglusterfs/src/dict.c
parentfc233b8f6989fba02f77e0b0a5adbce1166bd7fe (diff)
libglusterfs: FORWARD_NULL coverity fix
Fixing FORWARD_NULL coverify errors in libglusterfs. CID: 1391407, 1391410 BUG: 789278 Change-Id: I3d20523005e4418759c8a72620edff7c977d2d00 updates: bz#789278 Signed-off-by: Sunil Kumar Acharya <sheggodu@redhat.com>
Diffstat (limited to 'libglusterfs/src/dict.c')
-rw-r--r--libglusterfs/src/dict.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libglusterfs/src/dict.c b/libglusterfs/src/dict.c
index aa893845659..aedb7c9660c 100644
--- a/libglusterfs/src/dict.c
+++ b/libglusterfs/src/dict.c
@@ -2240,7 +2240,9 @@ _dict_modify_flag (dict_t *this, char *key, int flag, int op)
return 0;
err:
- UNLOCK (&this->lock);
+ if (key && this)
+ UNLOCK (&this->lock);
+
if (pair) {
if (pair->key)
free(pair->key);