mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:28:07 +02:00
* prevent compiler crash caused by double freeing after reporting not
overloaded operator errors git-svn-id: trunk@22833 -
This commit is contained in:
parent
6023f73e2a
commit
fd8827d379
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -11163,6 +11163,7 @@ tests/test/toperator86.pp svneol=native#text/pascal
|
||||
tests/test/toperator87.pp svneol=native#text/pascal
|
||||
tests/test/toperator88.pp svneol=native#text/pascal
|
||||
tests/test/toperator9.pp svneol=native#text/pascal
|
||||
tests/test/toperatorerror.pp svneol=native#text/plain
|
||||
tests/test/tover1.pp svneol=native#text/plain
|
||||
tests/test/tover2.pp svneol=native#text/plain
|
||||
tests/test/tover3.pp svneol=native#text/plain
|
||||
|
@ -827,6 +827,7 @@ implementation
|
||||
CGMessage(parser_e_operator_not_overloaded);
|
||||
candidates.free;
|
||||
ppn.free;
|
||||
ppn:=nil;
|
||||
exit;
|
||||
end;
|
||||
|
||||
@ -847,6 +848,7 @@ implementation
|
||||
CGMessage3(parser_e_operator_not_overloaded_3,ld.typename,arraytokeninfo[optoken].str,rd.typename);
|
||||
candidates.free;
|
||||
ppn.free;
|
||||
ppn:=nil;
|
||||
exit;
|
||||
end;
|
||||
|
||||
@ -932,6 +934,7 @@ implementation
|
||||
if (cand_cnt=0) and (optoken=_NE) then
|
||||
begin
|
||||
ppn.free;
|
||||
ppn:=nil;
|
||||
operpd:=nil;
|
||||
optoken:=_EQ;
|
||||
cand_cnt:=search_operator(optoken,true);
|
||||
|
10
tests/test/toperatorerror.pp
Normal file
10
tests/test/toperatorerror.pp
Normal file
@ -0,0 +1,10 @@
|
||||
{ %fail }
|
||||
|
||||
type
|
||||
tenum=(ea);
|
||||
var
|
||||
p: pointer;
|
||||
e: tenum;
|
||||
begin
|
||||
if e<>p then ;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user