Click here to Skip to main content
15,890,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Debug Vs Release Pin
<color>Aljechin 4-Jan-06 23:34
<color>Aljechin 4-Jan-06 23:34 
GeneralRe: Debug Vs Release Pin
Anilkumar K V5-Jan-06 0:44
Anilkumar K V5-Jan-06 0:44 
GeneralRe: Debug Vs Release Pin
Eytukan5-Jan-06 0:55
Eytukan5-Jan-06 0:55 
GeneralRe: Debug Vs Release Pin
ThatsAlok8-Jan-06 19:01
ThatsAlok8-Jan-06 19:01 
GeneralRe: Debug Vs Release Pin
Eytukan8-Jan-06 20:21
Eytukan8-Jan-06 20:21 
GeneralRe: Debug Vs Release Pin
Eytukan24-Jan-06 21:18
Eytukan24-Jan-06 21:18 
GeneralRe: Debug Vs Release Pin
S Douglas5-Jan-06 1:11
professionalS Douglas5-Jan-06 1:11 
GeneralRe: Debug Vs Release Pin
Stephen Hewitt9-Jan-06 2:23
Stephen Hewitt9-Jan-06 2:23 
When you're developing an application it is generally done using a debug build. The developer should build a release build from time to time to make sure no weird stuff is going on (release mode only bugs). Obviously the QA department should be testing the release builds. If you get a release only bug I have found that often the cause is related to the fact that in a debug build uninitialized locals are initialized to 0xCCCCCCCC (interestingly 0xCC in an __asm int 3 which is a breakpoint) but in release build no initialization is performed. The /GZ compiler option (Catch Release-Build Errors in Debug Build) can be a big help. Among other things this suppresses the 0xCCCCCCCC fill. This often makes the release only bugs show up in debug builds.

Steve

QuestionUsing a DLL having its own DialogProcedure Pin
torbeli4-Jan-06 21:34
torbeli4-Jan-06 21:34 
AnswerRe: Using a DLL having its own DialogProcedure Pin
Prakash Nadar4-Jan-06 21:55
Prakash Nadar4-Jan-06 21:55 
GeneralRe: Using a DLL having its own DialogProcedure Pin
torbeli4-Jan-06 22:51
torbeli4-Jan-06 22:51 
GeneralRe: Using a DLL having its own DialogProcedure Pin
Prakash Nadar4-Jan-06 23:21
Prakash Nadar4-Jan-06 23:21 
QuestionCan i type cast a function ? Pin
vikas amin4-Jan-06 21:33
vikas amin4-Jan-06 21:33 
AnswerRe: Can i type cast a function ? Pin
Prakash Nadar4-Jan-06 22:00
Prakash Nadar4-Jan-06 22:00 
AnswerRe: Can i type cast a function ? Pin
Owner drawn4-Jan-06 22:13
Owner drawn4-Jan-06 22:13 
GeneralRe: Can i type cast a function ? Pin
Prakash Nadar4-Jan-06 22:44
Prakash Nadar4-Jan-06 22:44 
GeneralRe: Can i type cast a function ? Pin
Eytukan4-Jan-06 22:47
Eytukan4-Jan-06 22:47 
GeneralRe: Can i type cast a function ? Pin
Owner drawn4-Jan-06 23:09
Owner drawn4-Jan-06 23:09 
GeneralCorrected . Pin
Eytukan4-Jan-06 23:31
Eytukan4-Jan-06 23:31 
GeneralRe: Corrected . Pin
Owner drawn4-Jan-06 23:34
Owner drawn4-Jan-06 23:34 
GeneralRe: Corrected . Pin
Eytukan5-Jan-06 0:56
Eytukan5-Jan-06 0:56 
GeneralRe: Corrected . Pin
Owner drawn5-Jan-06 0:59
Owner drawn5-Jan-06 0:59 
GeneralRe: Corrected . Pin
vikas amin5-Jan-06 0:59
vikas amin5-Jan-06 0:59 
AnswerRe: Can i type cast a function ? Pin
S. Senthil Kumar5-Jan-06 3:40
S. Senthil Kumar5-Jan-06 3:40 
Questionresizing frame to fit view? Pin
LeeeNN4-Jan-06 20:13
LeeeNN4-Jan-06 20:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.