aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2007-08-24 00:23:36 +0000
committerSteve French <sfrench@us.ibm.com>2007-08-24 00:23:36 +0000
commit95ba7362105646523ee712fd252ec2e34ccbec15 (patch)
tree02744a4d038629bb890eda44aa39745e5f228eed /fs/cifs
parent[CIFS] cifs truncate missing a fix for private map COW race (diff)
downloadlinux-dev-95ba7362105646523ee712fd252ec2e34ccbec15.tar.xz
linux-dev-95ba7362105646523ee712fd252ec2e34ccbec15.zip
[CIFS] Fix unbalanced call to GetXid/FreeXid
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r--fs/cifs/cifsfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index cabb6a55d7dd..2493cc4f9e7f 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -346,7 +346,7 @@ int cifs_xquota_set(struct super_block *sb, int quota_type, qid_t qid,
if (pTcon) {
cFYI(1, ("set type: 0x%x id: %d", quota_type, qid));
} else {
- return -EIO;
+ rc = -EIO;
}
FreeXid(xid);