Re: [fpc-pascal] Re: TFPCHeapStatus miscalculations in 2.3.1

2009-08-11 Thread Vincent Snijders
Seth Grover schreef: Actually I was able to distill it down into a smaller example: randomize(); For reproducebility, can you change it to RandSeed := (some *constant* you choose); Vincent ___ fpc

[fpc-pascal] Re: TFPCHeapStatus miscalculations in 2.3.1

2009-08-11 Thread Seth Grover
Actually I was able to distill it down into a smaller example: program Project1; {$mode objfpc}{$H+} uses Classes, SysUtils; function RandomRange(const low : longint; const high : longint) : longint; begin if (high < low)