diff options
| -rw-r--r-- | xlators/storage/posix/src/posix.c | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index ef0b3c0f59b..6d3be0cdc69 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -4916,8 +4916,14 @@ do_xattrop (call_frame_t *frame, xlator_t *this, loc_t *loc, fd_t *fd,                  _fd = pfd->fd;          } -        if (loc && !gf_uuid_is_null (loc->gfid)) +        if (loc && !gf_uuid_is_null (loc->gfid)) {                  MAKE_INODE_HANDLE (real_path, this, loc, NULL); +                if (!real_path) { +                        op_ret = -1; +                        op_errno = ESTALE; +                        goto out; +                } +        }          if (real_path) {                  inode = loc->inode;  | 
