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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

User break point called from code.......

Status
Not open for further replies.

JackMorris

Technical User
Jan 30, 2003
18
IE
Hi,

I have following error when I run the program

"user break point called from code 0x77fa018c"

can anyone help me out to get rid of this problem?

Thanx in advance
Jack
 
This message usually means an assertion occured.

Use the "Call Stack" Window to analyze the problem. Then after you have identified the code causing the assertion/error if you still need help post the code here.

-pete
 
This could happen when deleting an invalid pointer.

For example, the following code would cause this problem:

char * gString = new char[255];
....
delete []gString;
....
and somewhere else you delete this pointer again.
delete []gStrings;

There are other situations you could come across this problem, but try to check all your pointers first.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top