Not exactly an answer to the question, but very probably the solution to the problem that prompted it:

I am 95% sure to have identified the problem now! :)

Here's what I did:

 * I enabled RangeChecking and OverflowChecking in the compiler
 * I tracked down and fixed all problems that caused `ERangeError` or `EIntOverflow` exceptions
 * I ran the program again with FastMM and FullDebugMode enabled
 * I was finally able to identify the cause of the problem in all cases to be a call to the JCL function `GetWindowCaption`

It turned out that `GetWindowCaption` had obviously not yet been checked for Unicode-compatibility: It was using the value returned from the API function `GetWindowTextLength` (which returns the number of characters) as input for `ReallocMem` (which expects the number of bytes) to allocate the buffer for `GetWindowText` (which in Delphi 2009 returns a buffer of WideChars). Boom! The function was allocating too little memory for the buffer but `GetWindowText` simply overwrote the following memory thus corrupting the block footer.

I have now filed this in the JCL bug tracker as [item #4648][1]


  [1]: http://homepages.codegear.com/jedi/issuetracker/view.php?id=4648