Interface unref should zero the pointer first.

This commit is contained in:
Rika Ichinose 2025-01-29 04:13:48 +03:00 committed by FPK
parent 98a5072fbe
commit 1e041077cc

View File

@ -53,11 +53,14 @@
{ interface helpers }
procedure fpc_intf_decr_ref(var i: pointer);[public,alias: 'FPC_INTF_DECR_REF']; compilerproc;
var
iFetch: pointer;
begin
if assigned(i) then
iFetch:=i;
if assigned(iFetch) then
begin
IUnknown(i)._Release;
i:=nil;
IUnknown(iFetch)._Release;
end;
end;