cnd
cnd

Reputation: 33754

Debug Assertion Fault on MFC CLR project

On closing mfc clr application, I've got message : enter image description here

What it means ? How can I fix it ?

Upvotes: 0

Views: 207

Answers (1)

paxdiablo
paxdiablo

Reputation: 881423

This is almost certainly a memory corruption issue somewhere in your program code.

For example, you have copied a hundred bytes into a twenty-byte array, overwriting some vital information in an unrelated variable or structure.

The fact that the assertion is coming from the Microsoft run time libraries (which have been very thoroughly tested, both by Microsoft and millions of their customers) means that the issue is probably elsewhere, and the effects of that error are just being caught at this point.

You need to examine your code very thoroughly to try and find out where such a memory corruption could occur.

Upvotes: 2

Related Questions