Fixed double-free in LLModel::Implementation destructor

This commit is contained in:
niansa
2023-06-01 17:16:33 +02:00
committed by AT
parent f74363bb3a
commit 5175db2781
2 changed files with 12 additions and 1 deletions

View File

@@ -17,6 +17,8 @@ public:
public:
Implementation(Dlhandle&&);
Implementation(const Implementation&) = delete;
Implementation(Implementation&&);
~Implementation();
static bool isImplementation(const Dlhandle&);