Page 1 of 1

Wierd Error

Posted: Thu Mar 17, 2011 8:46 pm
by Light-Dark
#0 00000000 0x0040192c in ??() (??:??)
#1 00000000 0x00000014 in ??() (??:??)
#2 00000000 0x00000000 in ??() (??:??)




O_O ??

Re: Wierd Error

Posted: Thu Mar 17, 2011 9:00 pm
by JesseGuarascia
What language is that in? O_O

Is that a debug error from C/++, or is it Assembly gone wrong? O_O

Re: Wierd Error

Posted: Thu Mar 17, 2011 9:11 pm
by Light-Dark
its in C++

Re: Wierd Error

Posted: Thu Mar 17, 2011 9:12 pm
by Falco Girgis
It's a fucked up stack trace.

Re: Wierd Error

Posted: Thu Mar 17, 2011 9:13 pm
by M_D_K
you're crashing in a library that doesn't have debug symbols, you should look at the call stack to see the last place execution took place in your code.

That should give you an idea of what went wrong.

Re: Wierd Error

Posted: Thu Mar 17, 2011 9:15 pm
by Falco Girgis
M_D_K wrote:you're crashing in a library that doesn't have debug symbols, you should look at the call stack to see the last place execution took place in your code.

That should give you an idea of what went wrong.
I'm fairly certain that probably is his call stack, in which case I'd guess that he's trying to link to some incompatible/somehow fucked up dynamic library.