From c4af5adac525671d9f1b026813685bd2d5dd5f57 Mon Sep 17 00:00:00 2001 From: Felony Date: Thu, 24 May 2018 06:30:02 +0430 Subject: [PATCH] Fix memory leak because of not overriding DLLHijack class destructor --- Robber/DLLHijack.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robber/DLLHijack.pas b/Robber/DLLHijack.pas index 4a8bf90..2f23684 100644 --- a/Robber/DLLHijack.pas +++ b/Robber/DLLHijack.pas @@ -31,7 +31,7 @@ TDLLHijack = class /// Class must get PE information of given file /// constructor Create(const FileName: string); - destructor Destroy; + destructor Destroy; override; function IsX86Image: Boolean;