Code crash in MS Visual Studio 2005 in RELEASE configuration - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:10:40Z http://stackoverflow.com/feeds/question/8612 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration 1 Code crash in MS Visual Studio 2005 in RELEASE configuration goldenmean 2008-08-12T08:44:09Z 2008-08-12T13:03:36Z <p>Hi,</p> <p>I have a workspace for running an H.263 Video Encoder in a loop for 31 times i.e. the main is executed 31 times to generate 31 different encoded bit streams. This MS Visual Studio 2005 Workspace has all C source files. When i create a "DEBUG" configuration for the workspace and build and execute it, it runs fine, i.e. it generates all the 31 output files as expected. But when I set the configuration of the workspace to "RELEASE" mdoe, and repeat the process, the encoder crashes at some test case run.</p> <p>Now to debug this is verified following:</p> <ol> <li>Analyzed the code to see if there was any variable initialization being missed out in every run of the encoder </li> <li>Checked the various Workspace(Solution) options in both the modes (DEBUG and RELEASE). </li> </ol> <p>There are some obvious differences, but i turned the optimization related options explicitly same in both modes. </p> <p>But still could not nail the problem and find a fix for that. Any pointers?</p> <p>-Ajit.</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8615#8615 0 Answer by Jon Limjap for Code crash in MS Visual Studio 2005 in RELEASE configuration Jon Limjap 2008-08-12T08:48:45Z 2008-08-12T08:48:45Z <p>Are you sure there are no precompile directives that, say, ignores some really important code in Release mode but allows them in Debug?</p> <p>Also, have you implemented any logging that might point out to the precise assembly that's throwing the error?</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8616#8616 2 Answer by Greg Hewgill for Code crash in MS Visual Studio 2005 in RELEASE configuration Greg Hewgill 2008-08-12T08:51:01Z 2008-08-12T08:51:01Z <p>It's hard to say what the problem might be without carefully inspecting the code. However...</p> <p>One of the differences between debug and release builds is how the function call stack frame is set up. There are certain classes of bad things you can do (like calling a function with the wrong number of arguments) that are not fatal in a debug build but crash horribly in a release build. Perhaps you could try changing the stack frame related options (I forget what they're called, sorry) in the release build to the same as the debug build and see whether that helps.</p> <p>Another thing might be to enable all the warnings you possibly can, and fix them all.</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8617#8617 1 Answer by John Smithers for Code crash in MS Visual Studio 2005 in RELEASE configuration John Smithers 2008-08-12T08:51:20Z 2008-08-12T08:51:20Z <p>Could be a concurrency problem of two threads. The DEBUG configuration slows the execution down, so the problem does not occur. But, only a guess.</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8618#8618 1 Answer by Rob Cooper for Code crash in MS Visual Studio 2005 in RELEASE configuration Rob Cooper 2008-08-12T08:51:52Z 2008-08-12T08:51:52Z <p>Interesting problem.. Are you sure you have no conditional compilation code lurking around that is not being compiled in release mode? i.e:</p> <pre><code>#if (DEBUG) // Debug Code here #else // Release Code here #endif </code></pre> <p>Thats the only thing I can really think of.. Never experienced anything like this myself..</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8643#8643 0 Answer by Will Dean for Code crash in MS Visual Studio 2005 in RELEASE configuration Will Dean 2008-08-12T10:04:14Z 2008-08-12T10:04:14Z <p>I would look at the crash in more detail - if it's crashing in a test case, then it sounds pretty easily reproducible, which is usually most of the challenge.</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8644#8644 1 Answer by David Sykes for Code crash in MS Visual Studio 2005 in RELEASE configuration David Sykes 2008-08-12T10:12:57Z 2008-08-12T10:12:57Z <p>Can you add the debug symbols to the release build and run it in the debugger to see where and why it crashed?</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8661#8661 0 Answer by HS for Code crash in MS Visual Studio 2005 in RELEASE configuration HS 2008-08-12T10:48:18Z 2008-08-12T10:48:18Z <p>Also to consider: in debug mode, the variables are initialized with 0xCCCCCCCC instead of zero. That might have some nasty side effects.</p> http://stackoverflow.com/questions/8612/code-crash-in-ms-visual-studio-2005-in-release-configuration/8788#8788 1 Answer by Coincoin for Code crash in MS Visual Studio 2005 in RELEASE configuration Coincoin 2008-08-12T13:03:36Z 2008-08-12T13:03:36Z <p>Yeah, those bastard crashes are the hardest to fix. Fortunatly, there are some steps you can do that will give you clues before you resort to manually looking at the code and hope to find the needle.</p> <p>When does it crash? At every test? At a specific test? What does that test does that the others don't?</p> <p>What's the error? If it's an access violation, is there a pattern to where it happens? If the addresses are low, it might mean there is an uninitialised pointer somewhere.</p> <p>Is the program crashing with Debug configuration but without the debugger attached? If so, it's most likely a thread synchronisation problem as John Smithers pointed out.</p> <p>Have you tried running the code through an analyser such as Purify? It's slow but it's usually worth the wait.</p> <p>Try to debug the release configuration anyway. It will only dump assemblies but it can still give you an indication of what happens such as if the code pointer jumps in the middle of garbage or hits a breakpoint in an external library.</p> <p>Are you on an Intel architecture? If not, watch for memory alignement errors, they hard crash without warning on some architectures and those codec algorithm tend to create those situations a lot since they are overly optimized.</p>