Strange code crash problem? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:35:03Z http://stackoverflow.com/feeds/question/737411 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/737411/strange-code-crash-problem 0 Strange code crash problem? goldenmean 2009-04-10T11:56:55Z 2009-08-26T16:32:48Z <p>I have a MSVC 6.o workspace, which has all C code.<br /> The code is being run without any optimization switch i.e with option O0, and in debug mode. This code is obtained from some 3rd party. It executes desirable as it is.</p> <p>But when I add some <code>printf</code> statements in certain functions for debugging, and then execute the code, it crashes.</p> <p>I suspect it to be some kind of code/data overflow across a memory-page/memory-segment or something alike. But the code does not have any memory map specifier, or linker command file mentioning the segments/memory map etc. </p> <p>How do I narrow down the cause, and the fix for this quirky issue?</p> http://stackoverflow.com/questions/737411/strange-code-crash-problem/737446#737446 1 Answer by Manuel for Strange code crash problem? Manuel 2009-04-10T12:13:47Z 2009-04-10T12:13:47Z <p>On Linux, I like <a href="http://valgrind.org/" rel="nofollow">valgrind</a>. Here is a <a href="http://stackoverflow.com/questions/413477/is-there-a-good-valgrind-substitute-for-windows">Stack Overflow thread for valgrind-like tools on Windows</a>.</p> http://stackoverflow.com/questions/737411/strange-code-crash-problem/737451#737451 0 Answer by Atul for Strange code crash problem? Atul 2009-04-10T12:15:47Z 2009-04-10T12:15:47Z <p>Use string.getbuffer while printing cstring objects in printf. There could be an issue for wide char and normal string. printf("%s",str.Getbuffer()); str.ReleaseBuffer(); Cheers, Atul.</p> http://stackoverflow.com/questions/737411/strange-code-crash-problem/737632#737632 1 Answer by Hexagon for Strange code crash problem? Hexagon 2009-04-10T13:35:36Z 2009-04-10T13:35:36Z <p>You could try to determine where the crash happens, by looking at the stack trace in Visual Studio. You should be able to see what is the sequence of function calls that eventually leads to the crash, and this may give you a hint as to what's wrong.</p> <p>It is also possible that the printf() alone causes the crash. A possible cause - but not too likely on Windows - is a too-small stack that is being overflown by the call to printf().</p> http://stackoverflow.com/questions/737411/strange-code-crash-problem/1336009#1336009 0 Answer by Captain Lepton for Strange code crash problem? Captain Lepton 2009-08-26T16:32:48Z 2009-08-26T16:32:48Z <p>In general when trying to deal with a crash, your first port of call should be the debugger.</p> <p>Used correctly, this will enable you to narrow down your problem to a specific line of code and, hopefully, give you a view of the runtime memory at the moment of the crash. This will allow you to see the immediate cause of the crash.</p>