Click here to Skip to main content
15,888,521 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I designed application in VC++ environment of windows,it working fine while I debug it in editor visual studio.But once I build application in Release version it throws memory dump exception and blue screen of death appears finally.
What are the possibility of this type of scenario?

What I have tried:

I allocate all dynamic memories in static format, remove unused variables and functions
Posted
Updated 28-Feb-16 20:05pm
Comments
Richard MacCutchan 29-Feb-16 3:52am    
BSOD is a fatal error in Windows, and it is generally quite difficult to do that from a simple application. What is your application doing that affects the OS?
Venkat Raghvan 2-Mar-16 0:56am    
Actually, it is large application with multiple communication media API's.In that one of the module which will run for infinite time and small scenario of total application(It contains all tests quick view in it)

1 solution

Many possible reasons not limited to these:
c++ - Common reasons for bugs in release version not present in debug mode - Stack Overflow[^]
Can be debugged using these methods:
c++ - Program only crashes as release build -- how to debug? - Stack Overflow[^]

More tips here:
Debugging Release Mode Problems[^]

As always do further research using GOOGLE.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900