From b624d06ca0a280cd3ce354307040951c64c599c7 Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Mon, 30 Dec 2024 14:14:23 -0500 Subject: [PATCH] Driver: FTD3XX: Fix close() --- platform/ftd3xx.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform/ftd3xx.cpp b/platform/ftd3xx.cpp index cd4ee98..0316c6c 100644 --- a/platform/ftd3xx.cpp +++ b/platform/ftd3xx.cpp @@ -95,6 +95,8 @@ bool FTD3XX::close() { addEvent(ret, APIEvent::Severity::EventWarning); } + handle.reset(); + setIsClosing(false); return true;