简体   繁体   English

如何解释此调用堆栈信息

[英]How to interpret this call stack information

Can someone help me understand this structure of call stack? 有人可以帮助我了解调用堆栈的这种结构吗?

MintControl::MintDIB:: MintDIB+22 in this statement in the below callstack, what does this number 22 means? MintControl :: MintDIB :: MintDIB + 22在下面的调用堆栈中的此语句中,此数字22表示什么? Is it line number or some more critical information? 是行号还是其他一些重要信息?

When ever, I get the crash log, these numbers next to method name are always same. 每当我收到崩溃日志时,方法名称旁边的这些数字始终相同。 Any help in this regard would be greatly appreciated. 在这方面的任何帮助将不胜感激。

Exception code: C0000005 ACCESS_VIOLATION
Fault address:  B821CD09 00:00000000 

Call stack:
Address   Frame
B821CD09  0012D088  0000:00000000 
0164E75A  0012D0A4  MintControl::MintDIB::MintDIB+22
01656E31  0012D154  MintControl::MintProjectorManager::getState+1E45
016593E7  0012D1EC  MintControl::MintProjectorManager::getState+43FB
01659353  0012D200  MintControl::MintProjectorManager::getState+4367
015BEB75  0012D248  LookAndFeel::ImageTheater::getImageBehaviorInterface+1E8B

Many Thanks! 非常感谢!

It's the offset in bytes from the start of the MintDIB constructor. 它是从MintDIB构造函数开始的字节偏移量。

Primary suspects for causing the crash: calling an uninitialised or corrupted function pointer or calling a virtual member function in an uninitialised or corrupted object. 导致崩溃的主要可疑对象:调用未初始化或损坏的函数指针或在未初始化或损坏的对象中调用虚拟成员函数。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM