mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
hw/rdma: Verify that ptr is not NULL before freeing
To cover the case where fini() was called even when init() fails make sure objects are not NULL before calling to non-null-safe destructors. Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190116151538.14088-1-yuval.shaia@oracle.com> Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
This commit is contained in:
parent
5bb8b73987
commit
a1aa88b7dc
2 changed files with 10 additions and 3 deletions
|
@ -41,6 +41,9 @@ static inline void res_tbl_init(const char *name, RdmaRmResTbl *tbl,
|
|||
|
||||
static inline void res_tbl_free(RdmaRmResTbl *tbl)
|
||||
{
|
||||
if (!tbl->bitmap) {
|
||||
return;
|
||||
}
|
||||
qemu_mutex_destroy(&tbl->lock);
|
||||
g_free(tbl->tbl);
|
||||
g_free(tbl->bitmap);
|
||||
|
@ -655,5 +658,7 @@ void rdma_rm_fini(RdmaDeviceResources *dev_res, RdmaBackendDev *backend_dev,
|
|||
res_tbl_free(&dev_res->cq_tbl);
|
||||
res_tbl_free(&dev_res->pd_tbl);
|
||||
|
||||
g_hash_table_destroy(dev_res->qp_hash);
|
||||
if (dev_res->qp_hash) {
|
||||
g_hash_table_destroy(dev_res->qp_hash);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue