[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180221204128.5846-1-garrmcnu@gmail.com>
Date: Wed, 21 Feb 2018 20:41:28 +0000
From: Garry McNulty <garrmcnu@...il.com>
To: linux-fsdevel@...r.kernel.org
Cc: viro@...iv.linux.org.uk, hch@....de, linux-kernel@...r.kernel.org,
Garry McNulty <garrmcnu@...il.com>
Subject: [PATCH] fs/iomap: fix memory leak on error condition
If the call to is_sync_kiocb() fails an error is returned without
freeing dio. Set the return code and jump to out_free_dio.
Detected by CoverityScan, CID 1429424 ("Resource leak")
Signed-off-by: Garry McNulty <garrmcnu@...il.com>
---
fs/iomap.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/fs/iomap.c b/fs/iomap.c
index afd163586aa0..65c5db38c15a 100644
--- a/fs/iomap.c
+++ b/fs/iomap.c
@@ -1063,8 +1063,10 @@ iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
iomap_dio_set_error(dio, ret);
if (!atomic_dec_and_test(&dio->ref)) {
- if (!is_sync_kiocb(iocb))
- return -EIOCBQUEUED;
+ if (!is_sync_kiocb(iocb)) {
+ ret = -EIOCBQUEUED;
+ goto out_free_dio;
+ }
for (;;) {
set_current_state(TASK_UNINTERRUPTIBLE);
--
2.14.3
Powered by blists - more mailing lists