From: Denis V. Lunev Date: Mon, 18 Sep 2023 18:00:43 +0000 (+0200) Subject: parallels: return earler in fail_format branch in parallels_open() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9c398781361b6f77a0da1aa9389098ccec16760b;p=qemu.git parallels: return earler in fail_format branch in parallels_open() We do not need to perform any deallocation/cleanup if wrong format is detected. Signed-off-by: Denis V. Lunev Reviewed-by: Alexander Ivanov --- diff --git a/block/parallels.c b/block/parallels.c index ae006e7fc7..12f38cf70b 100644 --- a/block/parallels.c +++ b/block/parallels.c @@ -1232,7 +1232,8 @@ static int parallels_open(BlockDriverState *bs, QDict *options, int flags, fail_format: error_setg(errp, "Image not in Parallels format"); - ret = -EINVAL; + return -EINVAL; + fail: /* * "s" object was allocated by g_malloc0 so we can safely