core: Unset device ctx if it has been destroyed 48/290948/1
authorBenjamin Berg <bberg@redhat.com>
Fri, 4 Feb 2022 21:50:28 +0000 (22:50 +0100)
committerMarek Szyprowski <m.szyprowski@samsung.com>
Wed, 5 Apr 2023 09:08:52 +0000 (11:08 +0200)
Devices can outlive their context in some cases (in particular with
python garbage collection). Guard against this by clearing the ctx
pointer so that it is not pointing to uninitialized memory.

Closes #1058

[Cherrypick from mainline commit c3639bc ("core: Unset device ctx if it has been destroyed")]
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Change-Id: Ic1a27aea2b29d07c93d96d98a684facc799b4259

libusb/core.c
libusb/version_nano.h

index 7893ac2..1c1ada1 100644 (file)
@@ -2441,6 +2441,7 @@ void API_EXPORTED libusb_exit(libusb_context *ctx)
        for_each_device(_ctx, dev) {
                usbi_warn(_ctx, "device %d.%d still referenced",
                        dev->bus_number, dev->device_address);
+               DEVICE_CTX(dev) = NULL;
        }
 
        if (!list_empty(&_ctx->open_devs))
index 03df9b4..2b170fc 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 11692
+#define LIBUSB_NANO 11693