From 3ce486929518da2673b6cef5ef1047849f587729 Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Tue, 29 Mar 2011 13:37:26 +0000 Subject: access the proper loc structure when inode ctx get fails in quota Signed-off-by: Raghavendra Bhat Signed-off-by: Vijay Bellur BUG: 2611 () URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2611 --- xlators/features/quota/src/quota.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators') 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; } -- cgit