mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:38:19 +02:00
* protect the destructors of tabstractrecordsymtable and twithsymtable against executing when called with a refcount > 1 (this fixes Mantis #34210)
+ added simplified test git-svn-id: trunk@39693 -
This commit is contained in:
parent
10886d8cef
commit
072699d38a
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -11596,6 +11596,7 @@ tests/tbs/tb0646a.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0646b.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0648.pp svneol=native#text/pascal
|
||||
tests/tbs/tb0649.pp -text svneol=native#text/pascal
|
||||
tests/tbs/tb0650.pp svneol=native#text/pascal
|
||||
tests/tbs/tb205.pp svneol=native#text/plain
|
||||
tests/tbs/tb610.pp svneol=native#text/pascal
|
||||
tests/tbs/tb613.pp svneol=native#text/plain
|
||||
|
@ -1179,9 +1179,10 @@ implementation
|
||||
mopofs : pmanagementoperator_offset_entry;
|
||||
i : longint;
|
||||
begin
|
||||
if refcount>1 then
|
||||
exit;
|
||||
{$ifdef llvm}
|
||||
if refcount=1 then
|
||||
fllvmst.free;
|
||||
fllvmst.free;
|
||||
{$endif llvm}
|
||||
for mop in tmanagementoperator do
|
||||
begin
|
||||
@ -2713,6 +2714,8 @@ implementation
|
||||
|
||||
destructor twithsymtable.destroy;
|
||||
begin
|
||||
if refcount>1 then
|
||||
exit;
|
||||
withrefnode.free;
|
||||
{ Disable SymList because we don't Own it }
|
||||
SymList:=nil;
|
||||
|
21
tests/tbs/tb0650.pp
Normal file
21
tests/tbs/tb0650.pp
Normal file
@ -0,0 +1,21 @@
|
||||
unit tb0650;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
type
|
||||
TTest = record
|
||||
SomeField: String;
|
||||
end;
|
||||
|
||||
TTestType = type TTest;
|
||||
|
||||
TTestClass = class
|
||||
fField: TTestType;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user