• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How to read through crash report file?

darkshin

New old member
Joined
Dec 14, 2010
Messages
231
Reaction score
21
Hey guys, been a while that I try to read this file, ofc I can understand what function screwed up.
But I can't figure out which line, like in the example below:

Code:
== application crashed
app name: OTClient
app version: 0.6.3
build compiler: msvc12
build date: Sep 18 2016
build type: RelWithDebInfo
build revision: 0 (devel)
crash date: Sep 19 2016 13:37:31
exception: Access violation (0xc0000005)
exception address: 0x011fccda
  backtrace:
    0: C:\Users\...\Documents\Visual Studio 2015\Projects\otclient-master\otclient.exe(UIMap::drawSelf+0x133) [0x0000000001207DA3]

We have the function UIMap::drawSelf+0x133 screwd up. So, I belive hat 0x133 means which line is the problem. This 0x133 looks like an hexadecimal number. So If I try to convert it to decimal I get 307, but the line 307 is over ahead from the function drawSelf from UIMap
So, how we read it? XD
 
I'd rather suggest running a client with gdb, instead trying to decipher it :p
 
Back
Top