e3c68b
From e44b75fdb86dcf759204816c873b4f9f4efbefa8 Mon Sep 17 00:00:00 2001
e3c68b
From: Susant Palai <spalai@redhat.com>
e3c68b
Date: Tue, 21 May 2019 16:17:09 +0530
e3c68b
Subject: [PATCH 142/169] lock: check null value of dict to avoid log flooding
e3c68b
e3c68b
> updates: bz#1712322
e3c68b
> Change-Id: I120a1d23506f9ebcf88c7ea2f2eff4978a61cf4a
e3c68b
> Signed-off-by: Susant Palai <spalai@redhat.com>
e3c68b
(backport of fix https://review.gluster.org/#/c/glusterfs/+/22756/)
e3c68b
e3c68b
BUG: bz#1704181
e3c68b
Change-Id: I2a192236328ebb39666ffef1146df312c08a377d
e3c68b
Signed-off-by: Susant Palai <spalai@redhat.com>
e3c68b
Reviewed-on: https://code.engineering.redhat.com/gerrit/171325
e3c68b
Tested-by: RHGS Build Bot <nigelb@redhat.com>
e3c68b
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
e3c68b
---
e3c68b
 xlators/features/locks/src/posix.c | 2 +-
e3c68b
 1 file changed, 1 insertion(+), 1 deletion(-)
e3c68b
e3c68b
diff --git a/xlators/features/locks/src/posix.c b/xlators/features/locks/src/posix.c
e3c68b
index 3f1c7a7..adb0df5 100644
e3c68b
--- a/xlators/features/locks/src/posix.c
e3c68b
+++ b/xlators/features/locks/src/posix.c
e3c68b
@@ -121,7 +121,7 @@ fetch_pathinfo(xlator_t *, inode_t *, int32_t *, char **);
e3c68b
 
e3c68b
 #define PL_CHECK_LOCK_ENFORCE_KEY(frame, dict, name, this, loc, fd, priv)      \
e3c68b
     do {                                                                       \
e3c68b
-        if (dict_get(dict, GF_ENFORCE_MANDATORY_LOCK) ||                       \
e3c68b
+        if ((dict && (dict_get(dict, GF_ENFORCE_MANDATORY_LOCK))) ||           \
e3c68b
             (name && (strcmp(name, GF_ENFORCE_MANDATORY_LOCK) == 0))) {        \
e3c68b
             inode_t *__inode = (loc ? loc->inode : fd->inode);                 \
e3c68b
             pl_inode_t *__pl_inode = pl_inode_get(this, __inode, NULL);        \
e3c68b
-- 
e3c68b
1.8.3.1
e3c68b