Reputation: 21
Recently, I have running into a problem that program made from visual studio properly has nullptr that is unallocated or something. Then it shuts the program and amazingly restart the same program.
do our community members know what is going on to my program?
I have SDL check and security check both enabled
Upvotes: 1
Views: 48
Reputation: 51511
You have created an MFC project with default settings. Among those default settings is Restart Manager Support (see How to: Add Restart Manager Support):
The restart manager adds support for your application if it unexpectedly closes or restarts.
Reference documentation for the Restart Manager can be found here.
Upvotes: 2