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

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

[PATCH] double iput() on failure exit in hugetlb



once we'd done d_instantiate(), we should only do dput().

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 8a03feab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -954,7 +954,7 @@ struct file *hugetlb_file_setup(const char *name, size_t size)
			FMODE_WRITE | FMODE_READ,
			&hugetlbfs_file_operations);
	if (!file)
		goto out_inode;
		goto out_dentry; /* inode is already attached */

	return file;