diff options
author | Sheetal Pamecha <sheetal.pamecha08@gmail.com> | 2018-10-09 11:34:08 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-10-25 05:35:25 +0000 |
commit | 06bad119b8c773a34cd2942d665112fbf7799788 (patch) | |
tree | 793119d4947215874de6864c2ee5232c6f0c9a5e | |
parent | 8d2a684ba102c5b2f558ac9bee819500da94421e (diff) |
features/namespace: NULL pointer deferencing clang fix
Removed VALIDATE_OR_GOTO check on "this"
Updates: bz#1622665
Change-Id: Ie0d74525901ebf9daa1a5e788a035db6dc5d8c06
Signed-off-by: Sheetal Pamecha <sheetal.pamecha08@gmail.com>
-rw-r--r-- | xlators/features/namespace/src/namespace.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xlators/features/namespace/src/namespace.c b/xlators/features/namespace/src/namespace.c index 25169709026..79812aa330f 100644 --- a/xlators/features/namespace/src/namespace.c +++ b/xlators/features/namespace/src/namespace.c @@ -1249,7 +1249,6 @@ reconfigure(xlator_t *this, dict_t *options) int ret = -1; ns_private_t *priv = NULL; - GF_VALIDATE_OR_GOTO(this->name, this, out); GF_VALIDATE_OR_GOTO(this->name, this->private, out); GF_VALIDATE_OR_GOTO(this->name, options, out); |