From acb784e2a87f1a5b57e75c5b92b833306feca9af Mon Sep 17 00:00:00 2001 From: Marian Csontos Date: Thu, 21 Jun 2018 10:22:35 +0200 Subject: [PATCH] bcache: fix memory leaks --- lib/device/bcache.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/device/bcache.c b/lib/device/bcache.c index 291184da1..3b780474d 100644 --- a/lib/device/bcache.c +++ b/lib/device/bcache.c @@ -319,6 +319,7 @@ static bool _sync_issue(struct io_engine *ioe, enum dir d, int fd, r = lseek(fd, where, SEEK_SET); if (r < 0) { log_warn("unable to seek to position %llu", (unsigned long long) where); + free(io); return false; } @@ -333,6 +334,7 @@ static bool _sync_issue(struct io_engine *ioe, enum dir d, int fd, if (r < 0) { log_warn("io failed %d", r); + free(io); return false; } @@ -341,6 +343,7 @@ static bool _sync_issue(struct io_engine *ioe, enum dir d, int fd, if (len) { log_warn("short io %u bytes remaining", (unsigned) len); + free(io); return false; }