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

Commit e50fb58b authored by Dan Carpenter's avatar Dan Carpenter Committed by Christoph Hellwig
Browse files

hfsplus: fix double lock typo in ioctl



This was supposed to be a mutex_unlock() instead of a mutex_lock().

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarChristoph Hellwig <hch@tuxera.com>
parent 35da7a30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags)
	mark_inode_dirty(inode);

out_unlock_inode:
	mutex_lock(&inode->i_mutex);
	mutex_unlock(&inode->i_mutex);
out_drop_write:
	mnt_drop_write(file->f_path.mnt);
out: