Second EDIT: I feel like I have answer... can't rely on anything after it is deleted. Maybe some background will help people see where I am coming from. Essentially, I am trying to fix a bug where a pointer gets deleted out from under me. Its a long story, I won't go into the details. Basically, I am trying to detect that I am in this situation, so I can exit gracefully from my function. I suppose the easiest and best way is to just figure out who actually owns this pointer, and ask him if anything has changed. So I am going to implement a fix like that. It avoids any of this c++ delete hacker-y I was discussing.
HOWEVER, the interesting thing is that in our code we have a class called 'BogusObject' that essentially acts as a tray catching people that accidentally dereference freed objects. Basically, we hook our own delete functions and bash the BogusObject class into the vtable of any freed class. Then if someone calls something they get a nice message saying something to the effect of "hey, something is wrong dude.". This is happening in my case. ie 0x604751f8+(someoffset) is inside the BogusObject class. BUT WE NO LONGER USE BOGUSOBJECT!!!! It literally isn't setup anywhere (even links properly if I completely remove the BogusObject class), and yet I still end up getting the nice message saying something is wrong! But I am now of the opinion that it is a coincidence.
For some reason the runtime is putting that 0x604751f8 value in this pointer when it is deleted, and that just happens to correspond with the one class that has a purpose to catch situations like this! weird. But on to bigger and better bugs!
thanks for the help!
