11-20-2011 07:48 AM
11-21-2011 03:18 PM - edited 11-21-2011 03:18 PM
In the debugger unitialized globals are initialized to zero, but not for a release .exe. So if you are checking whether a global pointer is NULL before it is set to a value by your application it will generally work fine in the debugger but may crash as a release configuration depending on what you use that pointer for. That's a common thing I have run into.