Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Step through in VC++ Pin
Software_Specialist9-May-07 14:31
Software_Specialist9-May-07 14:31 
QuestionRe: Step through in VC++ Pin
Mark Salsbery9-May-07 14:54
Mark Salsbery9-May-07 14:54 
AnswerRe: Step through in VC++ Pin
Software_Specialist10-May-07 1:17
Software_Specialist10-May-07 1:17 
GeneralRe: Step through in VC++ Pin
Software_Specialist10-May-07 1:38
Software_Specialist10-May-07 1:38 
GeneralRe: Step through in VC++ Pin
Mark Salsbery10-May-07 4:50
Mark Salsbery10-May-07 4:50 
GeneralRe: Step through in VC++ Pin
Mark Salsbery10-May-07 4:45
Mark Salsbery10-May-07 4:45 
GeneralRe: Step through in VC++ Pin
Nelek13-May-07 19:56
protectorNelek13-May-07 19:56 
QuestionRe: Error in plex.cpp, line 44 Pin
mla1549-May-07 9:35
mla1549-May-07 9:35 
Hello,
I'm receiving a windows message box (actual name of EXE omitted):
    First-chance exception in ______.exe: 0xC0000005: Access Violation
Possible deallocation error?  Any other ideas what the problem may be?  Any help is appreciated.  The disassembly code is shown below (crash at line 44).

38:   void CPlex::FreeDataChain()     // free this one and links
39:   {
00479931   test        ecx,ecx
00479933   je          CPlex::FreeDataChain+15h (00479946)
00479935   push        esi
40:       CPlex* p = this;
41:       while (p != NULL)
42:       {
43:           BYTE* bytes = (BYTE*) p;
44:           CPlex* pNext = p->pNext;
<code>00479936   mov         esi,dword ptr [ecx]</code>
45:           delete[] bytes;
00479938   push        ecx
00479939   call        operator delete (0047f53d)
0047993E   pop         ecx
0047993F   test        esi,esi
46:           p = pNext;
00479941   mov         ecx,esi
00479943   jne         CPlex::FreeDataChain+5 (00479936)
00479945   pop         esi
47:       }
48:   }


Regards,
Mike

AnswerRe: Error in plex.cpp, line 44 Pin
Stephen Hewitt9-May-07 14:25
Stephen Hewitt9-May-07 14:25 
AnswerRe: Error in plex.cpp, line 44 Pin
BadKarma9-May-07 22:12
BadKarma9-May-07 22:12 
AnswerRe: Error in plex.cpp, line 44 Pin
mla15411-May-07 5:25
mla15411-May-07 5:25 
QuestionFD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za9-May-07 9:20
od@ananzi.co.za9-May-07 9:20 
QuestionRe: FD_ACCEPT event very slow (sometimes) Pin
Mark Salsbery9-May-07 10:24
Mark Salsbery9-May-07 10:24 
AnswerRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za9-May-07 20:48
od@ananzi.co.za9-May-07 20:48 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Mark Salsbery10-May-07 5:00
Mark Salsbery10-May-07 5:00 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za11-May-07 1:27
od@ananzi.co.za11-May-07 1:27 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Mark Salsbery11-May-07 4:18
Mark Salsbery11-May-07 4:18 
AnswerRe: FD_ACCEPT event very slow (sometimes) Pin
Moak13-May-07 12:41
Moak13-May-07 12:41 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za17-May-07 5:15
od@ananzi.co.za17-May-07 5:15 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Moak17-May-07 5:21
Moak17-May-07 5:21 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za22-May-07 4:39
od@ananzi.co.za22-May-07 4:39 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Moak25-May-07 2:53
Moak25-May-07 2:53 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za21-Jun-07 2:42
od@ananzi.co.za21-Jun-07 2:42 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Moak21-Jun-07 6:51
Moak21-Jun-07 6:51 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za21-Jun-07 9:32
od@ananzi.co.za21-Jun-07 9:32 

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.