diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2007-08-24 00:23:36 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-08-24 00:23:36 +0000 |
commit | 95ba7362105646523ee712fd252ec2e34ccbec15 (patch) | |
tree | 02744a4d038629bb890eda44aa39745e5f228eed /fs/cifs/cifsfs.c | |
parent | 8064ab4da104900505f33535d230ce0da5d18341 (diff) |
[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/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
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); |