From 56814fefa0a4cff5d08528aa9103e01350d0e53a Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Thu, 7 Apr 2011 09:41:47 +0000 Subject: do not access the empty loc inode Signed-off-by: Raghavendra Bhat Signed-off-by: Vijay Bellur BUG: 2611 ([glusterfs-3.1.0-qa5]: crash in quota_rename) 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(-) diff --git a/xlators/features/quota/src/quota.c b/xlators/features/quota/src/quota.c index 34b04a7530c..ad06409412e 100644 --- a/xlators/features/quota/src/quota.c +++ b/xlators/features/quota/src/quota.c @@ -1339,8 +1339,8 @@ quota_link (call_frame_t *frame, xlator_t *this, loc_t *oldloc, loc_t *newloc) if (ctx == NULL) { gf_log (this->name, GF_LOG_WARNING, "quota context not set in inode (ino:%"PRId64 - ", gfid:%s)", local->oldloc.inode->ino, - uuid_utoa (local->oldloc.inode->gfid)); + ", gfid:%s)", oldloc->inode?oldloc->inode->ino:0, + oldloc->inode?uuid_utoa (oldloc->inode->gfid):"0"); op_errno = EINVAL; goto err; } -- cgit