View Single Post
Re: I got a MSVC debugging question too....
Old
  (#9)
Rick
Council Member
 
Rick's Avatar
 
Status: Offline
Posts: 690
Join Date: Dec 2003
Location: Holland
Default Re: I got a MSVC debugging question too.... - 18-09-2004

Quote:
Originally Posted by Pierre-Marie Baty
Hahaha, I know that.

The difference in MSVC between DEBUG builds and RELEASE builds, is that when you allocate new variables or memory stuff, MSVC automatically zeroes it out when it's compiled with DEBUG. In RELEASE, your variables are all uninitialized, i.e in unknown state.

Memset all your arrays & buffers, I bet that's it
yes....So if you disable this in debug mode perhaps you can find out where the problem is...
  
Reply With Quote