[PATCH] hw/nvme: fix leak on copy ranges
Klaus Jensen <[email protected]>
| Newsgroups | gmane.comp.emulators.qemu.stable,gmane.comp.emulators.qemu,gmane.comp.emulators.qemu.block |
|---|---|
| Message-ID | <[email protected]> |
From: Klaus Jensen <[email protected]> The buffer holding the ranges for the copy command is not correctly deallocated. Fix this. Cc: [email protected] Link: https://gitlab.com/qemu-project/qemu/-/work_items/4072 Fixes: 796d20681d9b ("hw/nvme: reimplement the copy command to allow aio cancellation") Signed-off-by: Klaus Jensen <[email protected]> --- hw/nvme/ctrl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/nvme/ctrl.c b/hw/nvme/ctrl.c index bd6ad64b2000..aa98f7cf8048 100644 --- a/hw/nvme/ctrl.c +++ b/hw/nvme/ctrl.c @@ -2811,6 +2811,7 @@ static void nvme_copy_done(NvmeCopyAIOCB *iocb) qemu_iovec_destroy(&iocb->iov); g_free(iocb->bounce); + g_free(iocb->ranges); if (iocb->ret < 0) { block_acct_failed(stats, &iocb->acct.read); --- base-commit: 0345ef676befc1a180d2f63bceaf3fca1d07ee88 change-id: 20260731-fix-copy-ranges-leak-06242c584712 Best regards, -- Klaus Jensen <[email protected]>