5 Jan
2012
5 Jan
'12
11:05 a.m.
Hi,
void __thiscall basic_string_char__Eos(basic_string_char *this, MSVCP_size_t len) { - this->size = len; - this->ptr[len] = 0; + if (this->ptr) { + this->size = len; + this->ptr[len] = 0; + } } This function should not be called if this->ptr is NULL. The bug is somewhere else. I'll take a look on it. Do you have a backtrace?
Piotr