-
Enthusiast
Can't find how to fix this
I've been trying to fix this problem for a long time. Some users crash when loading my server or quitting the game into the lobby. I've tried to debug the Gunz.dmp in native and get to this error :
Unhandled exception at 0x7791ECE2 in Gunz.dmp: Microsoft C++ exception: CMemoryException at memory location 0x0019CBE0.
However, since im pretty new to edit my source im having a hard time figuring out what could cause the crash.
Thank you! :)
-
-
The forgotten memory
Re: Can't find how to fix this
"CMemoryException" is this part of your source code or is it just inherited,
when we debug natively and the program exploits this it generates a collation tree, where we can see all the functions that collapsed from start -> to end.
If the visual cannot show a show the origin of the collision, it is that it does not come from the source code but from some external sdk or lib, in the case of having an SDK, it is recommended to have the PDB EXP files among others in the Lib entry so that the visual can obtain the necessary information to generate the DEBUG
- - - Updated - - -
you verify the calls to "Try" in your source, these are mostly found in CSCommon, to enter Log and information to the database, it may be that one of them is failing, you can also check the matchserver log to see if there are no errors when entering data in the DB
TRY
{
//...
}
CATCH(CMemoryException, e)
{
e->ReportError();
}
END_CATCH