diff options
author | Raghavendra G <raghavendra@gluster.com> | 2011-04-01 02:56:18 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-04-05 00:45:04 -0700 |
commit | ff9e63c0975e786a69e5ecede78b178f20baceb7 (patch) | |
tree | d7ff9909018a45ff46e38f758b010a581263d90d /xlators/features/quota | |
parent | f338193a707ae5b6b5ab6f820bea32612c4311bb (diff) |
features/quota: add NULL check before doing strcasecmp
Signed-off-by: Raghavendra G <raghavendra@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 2646 (glusterfs-client crashes during getxattr)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2646
Diffstat (limited to 'xlators/features/quota')
-rw-r--r-- | xlators/features/quota/src/quota.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/quota/src/quota.c b/xlators/features/quota/src/quota.c index e7dac765d..8a8523a89 100644 --- a/xlators/features/quota/src/quota.c +++ b/xlators/features/quota/src/quota.c @@ -1950,7 +1950,7 @@ quota_getxattr (call_frame_t *frame, xlator_t *this, loc_t *loc, { int32_t ret = 0; - if (strcasecmp (name, "trusted.limit.list") == 0) { + if ((name != NULL) && strcasecmp (name, "trusted.limit.list") == 0) { ret = quota_send_dir_limit_to_cli (frame, this, loc->inode, name); if (ret == 0) |