diff options
author | Susant Palai <spalai@redhat.com> | 2018-11-08 14:47:27 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-11-12 18:34:38 +0000 |
commit | f1a826e1b38d5ecaf9470c61198c4d4362b4c29a (patch) | |
tree | a85d6de4faed45c98ece03723f3af63be407a4e8 | |
parent | 54a5f0a07817098134219aea9414b029013927f3 (diff) |
features/ctime: Fix Coverity issue
CID : 1394632 Dereference after null check
Change-Id: If0bef48b070935854e9d2988393dba07c9001cd2
updates: bz#789278
Signed-off-by: Susant Palai <spalai@redhat.com>
-rw-r--r-- | xlators/storage/posix/src/posix-metadata.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix-metadata.c b/xlators/storage/posix/src/posix-metadata.c index 3fce0b23d1f..62fc328dd3b 100644 --- a/xlators/storage/posix/src/posix-metadata.c +++ b/xlators/storage/posix/src/posix-metadata.c @@ -345,6 +345,7 @@ posix_set_mdata_xattr(xlator_t *this, const char *real_path, int fd, GF_VALIDATE_OR_GOTO("posix", this, out); GF_VALIDATE_OR_GOTO(this->name, inode, out); + GF_VALIDATE_OR_GOTO(this->name, time, out); LOCK(&inode->lock); { |