Difference between revisions of "Testers 3.0.2"

From Lazarus wiki
Jump to navigationJump to search
m (Categorised page)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
There is a reression that causes programs to crash when they uses SysErrorMessage and HeapTrace.
+
<s>There is a reression that causes programs to crash if they use SysErrorMessage and HeapTrace.
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
program test;
 
program test;
  
Line 10: Line 10:
 
It'll crash with an errormessage like "Marked memory at $001C4D78 invalid". <br>
 
It'll crash with an errormessage like "Marked memory at $001C4D78 invalid". <br>
 
The regression is caused by r33823 (merging of r33363 to fixes branch). <br>
 
The regression is caused by r33823 (merging of r33363 to fixes branch). <br>
Reported as {{MantisLink|0031197}}[[User:Bart|Bart]] 2017-01-07 12:00 CET
+
Reported as {{MantisLink|0031197}}[[User:Bart|Bart]] 2017-01-07 12:00 CET</s> Fixed in revision 35246. [[User:Bart|Bart]] 2017-01-07 22:58
 +
 
 +
[[Category:FPC Testers]]

Latest revision as of 06:53, 18 September 2020

There is a reression that causes programs to crash if they use SysErrorMessage and HeapTrace.

program test;

uses sysutils;
begin
  writeln('SysErrorMessage(193)=',SysErrorMessage(193));
end.

It'll crash with an errormessage like "Marked memory at $001C4D78 invalid".
The regression is caused by r33823 (merging of r33363 to fixes branch).
Reported as Issue #0031197Bart 2017-01-07 12:00 CET
Fixed in revision 35246. Bart 2017-01-07 22:58