Vincent Snijders kirjoitti lauantai 26 helmikuu 2011 10:27:19: > It probably is some buffer overrun, at least that is more likely than > a bug in the heap manager.
Replacing: GetMem (fInputString, (Len + 1) * SizeOf (REChar)); with: GetMem (fInputString, (Len + 2) * SizeOf (REChar)); in TRegExpr code also cures the problem, although it may again hide the actual problem. Juha -- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
