diff options
| -rw-r--r-- | xlators/features/quota/src/quota.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/features/quota/src/quota.c b/xlators/features/quota/src/quota.c index 89f390732c1..8057f6e524c 100644 --- a/xlators/features/quota/src/quota.c +++ b/xlators/features/quota/src/quota.c @@ -1558,8 +1558,8 @@ quota_rename (call_frame_t *frame, xlator_t *this, loc_t *oldloc,          if (ctx == NULL) {                  gf_log (this->name, GF_LOG_WARNING,                          "quota context not set in inode (ino:%"PRId64 -                        ", gfid:%s)", local->loc.inode->ino, -                        uuid_utoa (local->loc.inode->gfid)); +                        ", gfid:%s)", oldloc->inode?oldloc->inode->ino:0, +                        oldloc->inode?uuid_utoa (oldloc->inode->gfid):"0");                  op_errno = EINVAL;                  goto err;          }  | 
