Opened 9 years ago
Last modified 9 years ago
#3420 closed defect
List.find() causes segmentation fault — at Initial Version
Reported by: | Jan Silar | Owned by: | somebody |
---|---|---|---|
Priority: | high | Milestone: | 1.9.3 |
Component: | Code Generation | Version: | trunk |
Keywords: | Cc: |
Description
When List.find is called and later fail() is called than the latter call causes segmentation fault.
To reproduce the problem add somewhere:
_ := List.find({1,2,3,4}, findTestF);
fail();
...
protected function findTestF
input Integer inI;
output Integer outI;
algorithm
outI := match inI
case 3
then 9;
end match;
end findTestF;
Note:
See TracTickets
for help on using tickets.