I have a game server.
Im not running my server in debug mode. but it seems like whenever too many people log into my server it crashes. i get some microsoft library c++ error 242.
something about 'iter' -.-
This is the Message i got:
Debug Assertion Failed!
Program: ...ts and Settings\Owner\ Desktop\Run Server\MapleSto ryServer.exe
File: c:\program files\microsoft visual studio 9.0\vc\include\ list
Line:242
Expression: list iterator not incrementable
: I went to that line of that file and this was in that section...
#if _HAS_ITERATOR_D EBUGGING
if (this->_Mycont == 0
|| _Ptr == 0
|| _Ptr == ((_Myt *)this->_Mycont)->_Myhead)
{
_DEBUG_ERROR("l ist iterator not incrementable") ; // <-- This is line 242...
_SCL_SECURE_TRA ITS_OUT_OF_RANG E;
}
Can someone help me with whats going on?
Im not running my server in debug mode. but it seems like whenever too many people log into my server it crashes. i get some microsoft library c++ error 242.
something about 'iter' -.-
This is the Message i got:
Debug Assertion Failed!
Program: ...ts and Settings\Owner\ Desktop\Run Server\MapleSto ryServer.exe
File: c:\program files\microsoft visual studio 9.0\vc\include\ list
Line:242
Expression: list iterator not incrementable
: I went to that line of that file and this was in that section...
#if _HAS_ITERATOR_D EBUGGING
if (this->_Mycont == 0
|| _Ptr == 0
|| _Ptr == ((_Myt *)this->_Mycont)->_Myhead)
{
_DEBUG_ERROR("l ist iterator not incrementable") ; // <-- This is line 242...
_SCL_SECURE_TRA ITS_OUT_OF_RANG E;
}
Can someone help me with whats going on?
Comment