aboutsummaryrefslogtreecommitdiff
path: root/backends/cryptodev-vhost-user.c
diff options
context:
space:
mode:
authorGabriel Barrantes <gabriel.barrantes.dev@outlook.com>2024-12-28 01:16:57 +0000
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2025-01-13 17:16:04 +0100
commit78b0c15a563ac4be5afb0375602ca0a3adc6c442 (patch)
tree12310c89e5e5d6becee677fa6f0965734d44d79f /backends/cryptodev-vhost-user.c
parentc48cc87ba15b3f7e327f6c6fab9eec7fe7421136 (diff)
downloadqemu-78b0c15a563ac4be5afb0375602ca0a3adc6c442.zip
qemu-78b0c15a563ac4be5afb0375602ca0a3adc6c442.tar.gz
qemu-78b0c15a563ac4be5afb0375602ca0a3adc6c442.tar.bz2
backends/cryptodev-vhost-user: Fix local_error leaks
Do not propagate error to the upper, directly output the error to avoid leaks. Fixes: 2fda101de07 ("virtio-crypto: Support asynchronous mode") Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2714 Signed-off-by: Gabriel Barrantes <gabriel.barrantes.dev@outlook.com> Reviewed-by: zhenwei pi <pizhenwei@bytedance.com> Message-Id: <DM8PR13MB50781054A4FDACE6F4FB6469B30F2@DM8PR13MB5078.namprd13.prod.outlook.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'backends/cryptodev-vhost-user.c')
-rw-r--r--backends/cryptodev-vhost-user.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/cryptodev-vhost-user.c b/backends/cryptodev-vhost-user.c
index 43efdf9..3295c61 100644
--- a/backends/cryptodev-vhost-user.c
+++ b/backends/cryptodev-vhost-user.c
@@ -281,8 +281,7 @@ static int cryptodev_vhost_user_create_session(
break;
default:
- error_setg(&local_error, "Unsupported opcode :%" PRIu32 "",
- sess_info->op_code);
+ error_report("Unsupported opcode :%" PRIu32 "", sess_info->op_code);
return -VIRTIO_CRYPTO_NOTSUPP;
}