diff options
author | Sachin Prabhu <sprabhu@redhat.com> | 2016-07-29 22:38:19 +0100 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2016-09-09 23:58:06 -0500 |
commit | 4214ebf4654798309364d0c678b799e402f38288 (patch) | |
tree | 489695c51262266b0d75fd2c7d3343ce4a2d48fc /fs/cifs/cifsproto.h | |
parent | bd0b841fee49de421f615cc173ccff063303672f (diff) | |
download | linux-stable-4214ebf4654798309364d0c678b799e402f38288.tar.gz linux-stable-4214ebf4654798309364d0c678b799e402f38288.tar.bz2 linux-stable-4214ebf4654798309364d0c678b799e402f38288.zip |
Fix memory leaks in cifs_do_mount()
Fix memory leaks introduced by the patch
fs/cifs: make share unaccessible at root level mountable
Also move allocation of cifs_sb->prepath to cifs_setup_cifs_sb().
Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
Tested-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifsproto.h')
-rw-r--r-- | fs/cifs/cifsproto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index 1243bd326591..95dab43646f0 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h @@ -184,7 +184,7 @@ extern int cifs_read_from_socket(struct TCP_Server_Info *server, char *buf, unsigned int to_read); extern int cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page, unsigned int to_read); -extern void cifs_setup_cifs_sb(struct smb_vol *pvolume_info, +extern int cifs_setup_cifs_sb(struct smb_vol *pvolume_info, struct cifs_sb_info *cifs_sb); extern int cifs_match_super(struct super_block *, void *); extern void cifs_cleanup_volume_info(struct smb_vol *pvolume_info); |