cifs: add kfree() on error path
We leak 256 bytes here on this error path. Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
f7c5445a9d
commit
6b03590412
1 changed files with 1 additions and 0 deletions
|
@ -1362,6 +1362,7 @@ static int cifs_writepages(struct address_space *mapping,
|
||||||
if (!experimEnabled && tcon->ses->server->secMode &
|
if (!experimEnabled && tcon->ses->server->secMode &
|
||||||
(SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
|
(SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
|
||||||
cifsFileInfo_put(open_file);
|
cifsFileInfo_put(open_file);
|
||||||
|
kfree(iov);
|
||||||
return generic_writepages(mapping, wbc);
|
return generic_writepages(mapping, wbc);
|
||||||
}
|
}
|
||||||
cifsFileInfo_put(open_file);
|
cifsFileInfo_put(open_file);
|
||||||
|
|
Loading…
Add table
Reference in a new issue