|
|
|
|
::operator new
or ::operator new[]
when it can't allocate memory. The three most probable cases for this are either you are allocating more memory than you have, the heap is fragmented enough that you can't allocate enough continuguous memory, or you have done something like trying to allocate an array with a negative size.