* finalize managed data passed to untyped "out" parameters after r31328

(mantis #2863)

git-svn-id: trunk@31624 -
This commit is contained in:
Jonas Maebe 2015-09-12 23:31:57 +00:00
parent 6be050b729
commit 6ffd8f0201
3 changed files with 22 additions and 1 deletions

1
.gitattributes vendored
View File

@ -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

View File

@ -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
View 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.