qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 09/11] blockdev: Plug memory leak in drive_uninit()


From: Kevin Wolf
Subject: [Qemu-devel] [PATCH 09/11] blockdev: Plug memory leak in drive_uninit()
Date: Thu, 10 Feb 2011 16:51:24 +0100

From: Markus Armbruster <address@hidden>

Started leaking in commit 1dae12e6.

Signed-off-by: Markus Armbruster <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
 blockdev.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/blockdev.c b/blockdev.c
index ecfadc1..24d7658 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -182,6 +182,7 @@ static void drive_uninit(DriveInfo *dinfo)
 {
     qemu_opts_del(dinfo->opts);
     bdrv_delete(dinfo->bdrv);
+    qemu_free(dinfo->id);
     QTAILQ_REMOVE(&drives, dinfo, next);
     qemu_free(dinfo);
 }
-- 
1.7.2.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]