cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Windows Programming
VS console vs. GUI discrepensies
VS console vs. GUI discrepensies
Jul 26, 2009 at 5:17pm UTC
jetimms
(21)
I have a console program that I am running that causes a crash ran from the console version, but in the VSC++ IDE (using Debug), it raises no errors.
What are some reasons this can happen?
Thanks.
Jul 30, 2009 at 9:23am UTC
kbw
(9488)
The debug heap is different from the release heap, it has header/trailer blocks around each allocation and checking facilities. This will change the application behaviour in the presence of an errant pointer.
Topic archived. No new replies allowed.