qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 4/8] Fix qemu_free use in bt-l2cap.c


From: Jean-Christophe DUBOIS
Subject: [Qemu-devel] [PATCH 4/8] Fix qemu_free use in bt-l2cap.c
Date: Sun, 15 Nov 2009 19:18:16 +0100

bt-l2cap.c is using free() instead of qemu_free().
Fix it.

Signed-off-by: Jean-Christophe DUBOIS <address@hidden>
---
 hw/bt-l2cap.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/bt-l2cap.c b/hw/bt-l2cap.c
index 4697f52..70d731e 100644
--- a/hw/bt-l2cap.c
+++ b/hw/bt-l2cap.c
@@ -1218,7 +1218,7 @@ static void l2cap_teardown(struct l2cap_instance_s 
*l2cap, int send_disconnect)
     for (cid = L2CAP_CID_ALLOC; cid < L2CAP_CID_MAX; cid ++)
         if (l2cap->cid[cid]) {
             l2cap->cid[cid]->params.close(l2cap->cid[cid]->params.opaque);
-            free(l2cap->cid[cid]);
+            qemu_free(l2cap->cid[cid]);
         }
 
     if (l2cap->role)
-- 
1.6.3.3





reply via email to

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