View Single Post
  #6  
Old September 20th, 2004, 06:26 PM

Baron Munchausen Baron Munchausen is offline
General
 
Join Date: Aug 2000
Location: Ohio, USA
Posts: 4,323
Thanks: 0
Thanked 0 Times in 0 Posts
Baron Munchausen is on a distinguished road
Default Re: Bizarre Turn Processing Error

It's an error message citing the exact line in the source code where the error occurs. The error involves some sort of 'null' event where a process was called on an invalid pointer/array member. "Object ID is zero" means null, no object. So, it was trying to delete something and wasn't given anything to delete. Either it was already deleted or the variable was trashed before it was passed to the process. Oops...

I didn't think MM allowed executables with debug information still attached to get out. You can send that error message to MM and he'll know exactly where to look in the source code.

Then he can wonder how you got the exact line number... I'm sure he would never intentionally allow the debug information to get out. It makes things too easy for hackers.
Reply With Quote