Wtf error :o

10/25/2012 08:32 redpoiz#1
Hello !

I have a big problem, all of people was deconnected of my server, but they cant reconnect ! (and the world doesn't crash, nothing crash).

See log:

Quote:
2012/10/25 08:24:41 CORE : is not alive

2012/10/25 08:25:41 CORE : is not alive

2012/10/25 08:26:41 CORE : is not alive

2012/10/25 08:27:41 CORE : is not alive

2012/10/25 08:28:41 CORE : is not alive

2012/10/25 08:28:48 \XXX\Sources\_Network\Net\Src\buffer.cpp 105
Please help me ...

Bye. :)
10/25/2012 15:25 Fappon#2
coreserver is not opened?!
10/25/2012 15:33 Мentus#3
Core is down, look at other loggs. ( maybe there are Callstack's or something. )
10/25/2012 17:26 redpoiz#4
CoreServer is correctly opened.

I dont have other log, and any files of crash (dump, rpt..).

Quote:
buffer.cpp 105
The error go to this function in _network folder:

Quote:
void CBufferQueue::Clear( BOOL bDelete )
{
CMclAutoLock Lock( m_cs );

if( bDelete )
{
CBuffer* pBuffer = GetHead(), *ptrtmp;

INIT_LOOP;
while( pBuffer )
{
VERIFY_LOOP( __FILE__, __LINE__ );

ptrtmp = pBuffer->pNext;
SAFE_DELETE( pBuffer );
pBuffer = ptrtmp;
}
}
m_uCount = 0;
m_pHead = m_pTail = NULL;
}