vote up 0 vote down star

Hi. I have recently catched the following crash in my application:

m_players[0].erase(plr); -- CRASHES HERE

m_players[1].erase(plr);

m_players is declared as: set m_players[2];

Visual Studio shows that it is "0xC0000005: Access violation writing location 0x0000000000000024."

Compiler: Visual Studio 2008.

Diassembly: 000000014007AA3B mov rcx,qword ptr [this] (crashed on)

so im assuming we're dying because of bad "this", since its a first access to this in that function. But since I watched locals/autos, this doesnt seem to be a bad pointer

LOCALS: http://privatepaste.com/8awNPevZ1H (sorry for the link, but StackOverflow didnt let me paste it as a plain text to here)

Would be nice to get a hint.

flag
2  
I think you need to provide a bit more information than this. – Fred Larson Oct 5 at 15:28
Please provide more information about the crash by showing the error display in a debugger. – Patrice Bernassola Oct 5 at 15:31
The declarations and the array initialization would help a lot. – Fred Larson Oct 5 at 15:35
included that data – Guest Oct 5 at 15:54
As others said, there isnt enough info to know more about the error. Maybe plr is not a valid reference. who knows... – HyLian Oct 5 at 15:56
show 3 more comments

3 Answers

vote up 0 vote down

any chance the array is global and the problematic code is executed before the array is initialized (can happen if its inside a constructor of a global object etc) ?

link|flag
hmm no btw, it crashes on (diassembly) 000000014007AA3B mov rcx,qword ptr [this] – Guest Oct 5 at 19:10
vote up 0 vote down

I think this has more to do with plr than m_players being already deleted or not available. Can you show how you get plr, is it a local variable or is it being passed as an argument? You might want to create a local variable and then use it in erase function and see if it crashes. This way you can pin point what exactly is causing the crash.

link|flag
Hmm yes, plr is passed as an argument, will try with a local variable. Thanks – Guest Oct 5 at 16:19
vote up 2 vote down

Something is pointing to 0. As you are using Visual Studio compile your application in Debug mode. Type Ctrl+Alt+E and activate the exceptions when they are thrown. This will help you to detect places where things go wrong before an exception handler is run. You can then post the callstack, but I think you will then see&solve the problem easily yourself. I can imagine something bad in the destructor of whatever type is plr.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.