Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invalid Pointer Operation - Delphi XE

I can't seem to figure this one out. My program compiles and runs successfully, but during debugging only it pops up a message box saying "Invalid Pointer Operation" when shutting the program down. I have painstakingly checked all the FormCloseQuery and FormDestory events for any syntax or logical error. I found none and they execute as expected without any error.

enter image description here

When I do tell the compiler to break at Invalid Pointer Operation error, it doesn't do anything but hangs up the program. At which point, I had to terminate or kill the process.

How do you figure this one out?

Thanks in advance,

like image 332
ThN Avatar asked Apr 11 '12 20:04

ThN


1 Answers

An Invalid Pointer exception is thrown by the memory manager when it tries to free invalid memory. There are three ways this can happen.

The most common is because you're trying to free an object that you've already freed. If you turn on FastMM's FullDebugMode, it will detect this and point you directly to the problem. (But make sure to build a map file so it will have the information it needs to create useful stack traces from.)

The second way is if you're trying to free memory that was allocated somewhere other than the memory manager. I've seen this a few times when passing a string from a Delphi EXE to a Delphi DLL that wasn't using the shared memory manager feature.

And the third way involves messing around with pointers directly and probably doesn't apply to you. If you try to FreeMem or Dispose a bad pointer that doesn't refer to an actual block of memory allocated by FastMM, you'll get this error.

It's most likely the first one. Use FullDebugMode and you'll find the source of the problem easily.

like image 176
Mason Wheeler Avatar answered Nov 15 '22 01:11

Mason Wheeler