Click here to Skip to main content
15,888,521 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Hello Pin
MrKBA15-Jan-14 3:05
MrKBA15-Jan-14 3:05 
GeneralRe: Hello Pin
Stefan_Lang15-Jan-14 4:40
Stefan_Lang15-Jan-14 4:40 
Questiona real problem i been facing in release mode Pin
jone201329-Jan-14 20:33
jone201329-Jan-14 20:33 
AnswerRe: a real problem i been facing in release mode Pin
SoMad9-Jan-14 20:54
professionalSoMad9-Jan-14 20:54 
GeneralRe: a real problem i been facing in release mode Pin
jone201329-Jan-14 21:02
jone201329-Jan-14 21:02 
GeneralRe: a real problem i been facing in release mode Pin
SoMad9-Jan-14 21:08
professionalSoMad9-Jan-14 21:08 
GeneralRe: a real problem i been facing in release mode Pin
jone201329-Jan-14 21:33
jone201329-Jan-14 21:33 
AnswerRe: a real problem i been facing in release mode Pin
Jochen Arndt9-Jan-14 21:08
professionalJochen Arndt9-Jan-14 21:08 
Memory leaks did not lead to crashes. They just block memory. Your program corrupts the heap and generates access violations. Handling access violations by exceptions does not help. When they occur, your program is in an undefined state. So you must find the source code that corrupts the heap and generates the access violation.

Common sources are invalid pointers or array indexes and don't checking error returns. You can try to execute only portions of your program and check if corruptions occur to narrow down the source code that contains the error. Best practice to avoid such errors is using asserts in debug build that check all function parameters and return values.
GeneralRe: a real problem i been facing in release mode Pin
jone201329-Jan-14 21:24
jone201329-Jan-14 21:24 
AnswerRe: a real problem i been facing in release mode Pin
Stefan_Lang9-Jan-14 22:34
Stefan_Lang9-Jan-14 22:34 
GeneralRe: a real problem i been facing in release mode Pin
jone2013210-Jan-14 9:43
jone2013210-Jan-14 9:43 
AnswerRe: a real problem i been facing in release mode Pin
Alan Balkany10-Jan-14 5:21
Alan Balkany10-Jan-14 5:21 
GeneralRe: a real problem i been facing in release mode Pin
jone2013214-Jan-14 7:22
jone2013214-Jan-14 7:22 
AnswerRe: a real problem i been facing in release mode Pin
jschell12-Jan-14 9:00
jschell12-Jan-14 9:00 
GeneralRe: a real problem i been facing in release mode Pin
jone2013214-Jan-14 7:25
jone2013214-Jan-14 7:25 
QuestionFile time issue Pin
_Flaviu7-Jan-14 0:55
_Flaviu7-Jan-14 0:55 
AnswerRe: File time issue Pin
Richard MacCutchan7-Jan-14 2:53
mveRichard MacCutchan7-Jan-14 2:53 
AnswerRe: File time issue Pin
Jochen Arndt7-Jan-14 3:02
professionalJochen Arndt7-Jan-14 3:02 
GeneralRe: File time issue Pin
_Flaviu7-Jan-14 21:45
_Flaviu7-Jan-14 21:45 
GeneralRe: File time issue Pin
Richard MacCutchan7-Jan-14 22:06
mveRichard MacCutchan7-Jan-14 22:06 
GeneralRe: File time issue Pin
Jochen Arndt7-Jan-14 22:39
professionalJochen Arndt7-Jan-14 22:39 
GeneralRe: File time issue Pin
_Flaviu8-Jan-14 1:14
_Flaviu8-Jan-14 1:14 
GeneralRe: File time issue Pin
Jochen Arndt8-Jan-14 1:33
professionalJochen Arndt8-Jan-14 1:33 
GeneralRe: File time issue Pin
_Flaviu8-Jan-14 1:44
_Flaviu8-Jan-14 1:44 
GeneralRe: File time issue Pin
Jochen Arndt8-Jan-14 2:13
professionalJochen Arndt8-Jan-14 2: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.