diff --git a/io_uring/rw.c b/io_uring/rw.c
index 0fb7a045163ae7c58d0da639db4e26c30fea972d..8ba93fffc23acad10b5ad56a9de036d1a85810fc 100644
--- a/io_uring/rw.c
+++ b/io_uring/rw.c
@@ -721,7 +721,7 @@ static int io_rw_init_file(struct io_kiocb *req, fmode_t mode)
 	struct file *file = req->file;
 	int ret;
 
-	if (unlikely(!file || !(file->f_mode & mode)))
+	if (unlikely(!(file->f_mode & mode)))
 		return -EBADF;
 
 	if (!(req->flags & REQ_F_FIXED_FILE))