[Qemu-devel] [PULL v2 07/12] block/crypto: Fix memory leak in create error path

Kevin Wolf posted 12 patches 6 years, 10 months ago
There is a newer version of this series
[Qemu-devel] [PULL v2 07/12] block/crypto: Fix memory leak in create error path
Posted by Kevin Wolf 6 years, 10 months ago
Fixes: Coverity CID 1393782
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
---
 block/crypto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/crypto.c b/block/crypto.c
index 994172a3de..146d81c90a 100644
--- a/block/crypto.c
+++ b/block/crypto.c
@@ -551,7 +551,7 @@ static int coroutine_fn block_crypto_co_create_opts_luks(const char *filename,
     /* Create protocol layer */
     ret = bdrv_create_file(filename, opts, errp);
     if (ret < 0) {
-        return ret;
+        goto fail;
     }
 
     bs = bdrv_open(filename, NULL, NULL,
-- 
2.13.6