Difference between revisions of "Testers 3.0.2"

From Free Pascal wiki
Jump to navigationJump to search
(Created page with "There is a reression that causes programs to crash when they uses SysErrorMessage and HeapTrace. <syntaxhighlight> program test; uses sysutils; begin writeln('SysErrorMessa...")
 
Line 8: Line 8:
 
end.
 
end.
 
</syntaxhighlight>
 
</syntaxhighlight>
It'll crash with an errormessae like "Marked memory at $001C4D78 invalid". [[User:Bart|Bart]] 2017-01-07 12:00 CET
+
It'll crash with an errormessage like "Marked memory at $001C4D78 invalid". <br>
 +
Reported as {{MantisLink|0031197}}[[User:Bart|Bart]] 2017-01-07 12:00 CET

Revision as of 13:25, 6 January 2017

There is a reression that causes programs to crash when they uses 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".
Reported as Issue #0031197Bart 2017-01-07 12:00 CET