diff options
Diffstat (limited to 'hw/usb-bt.c')
-rw-r--r-- | hw/usb-bt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/usb-bt.c b/hw/usb-bt.c index 55f979e42c..53ad9a8693 100644 --- a/hw/usb-bt.c +++ b/hw/usb-bt.c @@ -612,9 +612,9 @@ static void usb_bt_handle_destroy(USBDevice *dev) { struct USBBtState *s = (struct USBBtState *) dev->opaque; - s->hci->opaque = 0; - s->hci->evt_recv = 0; - s->hci->acl_recv = 0; + s->hci->opaque = NULL; + s->hci->evt_recv = NULL; + s->hci->acl_recv = NULL; qemu_free(s); } |