Strange code crash problem? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T12:35:03Zhttp://stackoverflow.com/feeds/question/737411http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/737411/strange-code-crash-problem0Strange code crash problem?goldenmean2009-04-10T11:56:55Z2009-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#7374461Answer by Manuel for Strange code crash problem?Manuel2009-04-10T12:13:47Z2009-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#7374510Answer by Atul for Strange code crash problem?Atul2009-04-10T12:15:47Z2009-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#7376321Answer by Hexagon for Strange code crash problem?Hexagon2009-04-10T13:35:36Z2009-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#13360090Answer by Captain Lepton for Strange code crash problem?Captain Lepton2009-08-26T16:32:48Z2009-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>