Explorar o código

dio: fix use-after-free

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Al Viro %!s(int64=15) %!d(string=hai) anos
pai
achega
06777d308f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      fs/direct-io.c

+ 1 - 1
fs/direct-io.c

@@ -1206,7 +1206,7 @@ __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode,
 	 * NOTE: filesystems with their own locking have to handle this
 	 * on their own.
 	 */
-	if (dio->flags & DIO_LOCKING) {
+	if (flags & DIO_LOCKING) {
 		if (unlikely((rw & WRITE) && retval < 0)) {
 			loff_t isize = i_size_read(inode);
 			if (end > isize)