From: Pan Nengyuan Date: Fri, 20 Dec 2019 01:34:10 +0000 (+0800) Subject: util/module: fix a memory leak X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=638be47830ec77faf02dad650e4b9d266997067d;p=qemu.git util/module: fix a memory leak spotted by ASAN Fixes: 81d8ccb1bea4fb9eaaf4c8e30bd4021180a9a39f Reported-by: Euler Robot Signed-off-by: Pan Nengyuan Reviewed-by: Markus Armbruster Message-Id: <1576805650-16380-1-git-send-email-pannengyuan@huawei.com> Signed-off-by: Laurent Vivier --- diff --git a/util/module.c b/util/module.c index e9fe3e5422..8c5315a7a3 100644 --- a/util/module.c +++ b/util/module.c @@ -214,6 +214,7 @@ bool module_load_one(const char *prefix, const char *lib_name) if (!success) { g_hash_table_remove(loaded_modules, module_name); + g_free(module_name); } for (i = 0; i < n_dirs; i++) {