mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
Interface unref should zero the pointer first.
This commit is contained in:
parent
98a5072fbe
commit
1e041077cc
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user