qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [5536] Change freeing method because the allocation functio


From: Blue Swirl
Subject: [Qemu-devel] [5536] Change freeing method because the allocation function was changed in r5532
Date: Sat, 25 Oct 2008 13:49:00 +0000

Revision: 5536
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5536
Author:   blueswir1
Date:     2008-10-25 13:48:59 +0000 (Sat, 25 Oct 2008)

Log Message:
-----------
Change freeing method because the allocation function was changed in r5532

Modified Paths:
--------------
    trunk/hw/bt-hci.c

Modified: trunk/hw/bt-hci.c
===================================================================
--- trunk/hw/bt-hci.c   2008-10-25 11:47:20 UTC (rev 5535)
+++ trunk/hw/bt-hci.c   2008-10-25 13:48:59 UTC (rev 5536)
@@ -1135,7 +1135,7 @@
     hci->device.inquiry_scan = 0;
     hci->device.page_scan = 0;
     if (hci->device.lmp_name)
-        free((void *) hci->device.lmp_name);
+        qemu_free((void *) hci->device.lmp_name);
     hci->device.lmp_name = 0;
     hci->device.class[0] = 0x00;
     hci->device.class[1] = 0x00;
@@ -1813,7 +1813,7 @@
         LENGTH_CHECK(change_local_name);
 
         if (hci->device.lmp_name)
-            free((void *) hci->device.lmp_name);
+            qemu_free((void *) hci->device.lmp_name);
         hci->device.lmp_name = pstrdup(PARAM(change_local_name, name),
                         sizeof(PARAM(change_local_name, name)));
         bt_hci_event_complete_status(hci, HCI_SUCCESS);
@@ -2189,7 +2189,7 @@
     bt_device_done(&hci->device);
 
     if (hci->device.lmp_name)
-        free((void *) hci->device.lmp_name);
+        qemu_free((void *) hci->device.lmp_name);
 
     /* Be gentle and send DISCONNECT to all connected peers and those
      * currently waiting for us to accept or reject a connection request.






reply via email to

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