Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

debug error

Status
Not open for further replies.

jayjay60

Programmer
Jun 19, 2001
97
FR
I would like to know if someone could explain me what is the cause of this kind of debug error:"abnormal program termination"

thanks in advance

jayjay
 
it means program terminated on an exception and because of it, without handling it. John Fill
1c.bmp


ivfmd@mail.md
 
OK, i try to debug my application and i have this message:
1020AE23 CXX 0013:Error:missing operator.
What does it mean ?
 
I don't know how to reached the c++ code.
When i run the application, first i have this message, so i could "retry" to debug the application, and at this moment ihave this message: "breakpoint was reached.
(0x80000003) happened in the application at the place 0x1020ae23" (sorry for the translation, i have a french version). And now i could click OK or Cancel, cancel bring me to a new window with a lot of code as 1020AE23.
As i'm new in this kind of problem, i'm totally lost.
 
do not look into disassembler code. Try to see all code until debuger show the error. See the last executed line, watch variables. This error means nothing since you didn't studied well your code and can't say which line crash. John Fill
1c.bmp


ivfmd@mail.md
 
Just for s&g's but a "}" at the end of the program... i have seen this error for a missing curly bracket

Matt
 
I try to debug with "step into" method and i have first this message in the output window:
"first chance exception in swaption.exe(kernell32.dll):0xE06D7363 Microsoft c++ exception"
"first chance exception in swaption.exe 0xC0000005: access violation"

but ican't go directly in mycode to show what effectively happen.

jayjay
 
do step over, and so you will find faster the crashes place. John Fill
1c.bmp


ivfmd@mail.md
 
don't be ridiculous. Would you like to edit disassembler code? Put breakpoints everywhere is possible and press F5. On stopping on a breakpoint remove it. See where exist breakpoints after chrashing. John Fill
1c.bmp


ivfmd@mail.md
 
Sorry, Johnfill, you misunderstand me. Jayjay is quoted as saying

"I don't know how to reached the c++ code."

I'm saying if you can't reach the c++ code(ie you only have the executable) You can't fix the problem
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top