diff options
author | Jean-Christophe DUBOIS <jcd@tribudubois.net> | 2009-11-15 19:18:16 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-02 08:57:42 -0600 |
commit | 2db69b23723a9353ccf6bd70f4f33e071ff9251e (patch) | |
tree | df9cf29cae394e0445ff6a488224bb17d880e752 /hw/bt-l2cap.c | |
parent | 5f6eab3f10770984cf73cb4326e27bea0b799e71 (diff) |
Fix qemu_free use in bt-l2cap.c
bt-l2cap.c is using free() instead of qemu_free().
Fix it.
Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/bt-l2cap.c')
-rw-r--r-- | 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 4697f529dc..70d731e61b 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) |