i thin from a stated item or something...
but GMs seam to sometimes crash HG.
Code: Select all
CClient::~CClient()
{
int i;
if (m_pXSock != NULL) delete m_pXSock;
for (i = 0; i < DEF_MAXITEMS; i++)
if (m_pItemList[i] != NULL) {
delete m_pItemList[i]; //this debuger pointed to
m_pItemList[i] = NULL;
}
for(i = 0; i < DEF_MAXBANKITEMS; i++)
if (m_pItemInBankList[i] != NULL) {
delete m_pItemInBankList[i];
m_pItemInBankList[i]=NULL;
}
}
(this happens on GM dissconnect)