Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca171baa authored by Al Viro's avatar Al Viro
Browse files

cifs: don't leak nls on mount failure



if cifs_sb allocation fails, we still need to drop nls we'd stashed
into volume_info - the one we would've copied to cifs_sb if we could
allocate the latter.

Acked-by: default avatarPavel Shilovsky <piastryyy@gmail.com>
Reviewed-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 6d686175
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -672,6 +672,7 @@ cifs_do_mount(struct file_system_type *fs_type,
	cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
	if (cifs_sb == NULL) {
		root = ERR_PTR(-ENOMEM);
		unload_nls(volume_info->local_nls);
		goto out;
	}