mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
* finalize managed data passed to untyped "out" parameters after r31328
(mantis #2863) git-svn-id: trunk@31624 -
This commit is contained in:
parent
6be050b729
commit
6ffd8f0201
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -14735,6 +14735,7 @@ tests/webtbs/tw2853d.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2853e.pp svneol=native#text/plain
|
||||
tests/webtbs/tw2859.pp svneol=native#text/plain
|
||||
tests/webtbs/tw28593.pp svneol=native#text/plain
|
||||
tests/webtbs/tw28632.pp -text svneol=native#text/plain
|
||||
tests/webtbs/tw2865.pp svneol=native#text/plain
|
||||
tests/webtbs/tw28650.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw2876.pp svneol=native#text/plain
|
||||
|
@ -1001,7 +1001,6 @@ implementation
|
||||
|
||||
if assigned(parasym) and
|
||||
(parasym.varspez in [vs_var,vs_out,vs_constref]) and
|
||||
(parasym.vardef.typ<>formaldef) and
|
||||
{ for record constructors }
|
||||
(left.nodetype<>nothingn) then
|
||||
handlemanagedbyrefpara(left.resultdef);
|
||||
|
21
tests/webtbs/tw28632.pp
Normal file
21
tests/webtbs/tw28632.pp
Normal file
@ -0,0 +1,21 @@
|
||||
{ %opt=-gh }
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
procedure clear(out x);
|
||||
begin
|
||||
pointer(x):=nil;
|
||||
end;
|
||||
|
||||
procedure test;
|
||||
var
|
||||
ii1: iunknown;
|
||||
begin
|
||||
ii1:=tinterfacedobject.create;
|
||||
clear(ii1);
|
||||
end;
|
||||
|
||||
begin
|
||||
HaltOnNotReleased:=true;
|
||||
test;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user