I use _CrtMemCheckpoint( &s2 ); _CrtMemDumpStatistics( &s2 );
to see allocations.
So, on the start function the program used 40500Normal blocks total allocation 370000bytes.On finish - 40505normal blocks, 370100bytes allocation. but when I search in task manager it is about 2 Mb. And on 100 call of function Memory crash.
How program could "eat" memory? not new operations..
SpbJimbo, I can usually translate what people are attempting to say but all I can make out is your somehow getting a memory leak and you found it using CrtMemCheckpoint and CrtMemDumpStatistics. All this means is that you have a couple of allocated pointers that need to be "delete"d. Afterwards your memory should go down...
And what do you mean your Memory crash after you call what function how many times?