Assert error, please help me!

Started by
4 comments, last by ziplux 24 years, 1 month ago
When I run my code in the Debug configuration in VC 6, I get this error in one of those Assert dialogs: DAMMAGE: after Normal block (#17) at 0x007F0EC0 Does anyone know what this error means? Thanks in advance.
My Geekcode: "GCS d s: a14 C++$ P+(++) L+ E-- W+++$ K- w++(+++) O---- M-- Y-- PGP- t XR- tv+ b++ DI+(+++) D- G e* h!"Decode my geekcode!Geekcode.com
Visit our web site:Asylum Entertainment
Advertisement
I think it is a memory leak.
I believe it means that you have changed data past the end of a piece of memory that you allocated.
Try checking out the Microsoft site and just putting in "after Normal block" as the search string - takes you to the online manuals (looks to be an access outside of allocated memory error)
Sorry.. not memory leak.. memory access violation.


something like

char s[3]; // only 3 bytes.

strcpy(s, "More than 3 bytes");
Thanks for all your replies. I guess I''ll have to look through my code.
My Geekcode: "GCS d s: a14 C++$ P+(++) L+ E-- W+++$ K- w++(+++) O---- M-- Y-- PGP- t XR- tv+ b++ DI+(+++) D- G e* h!"Decode my geekcode!Geekcode.com
Visit our web site:Asylum Entertainment

This topic is closed to new replies.

Advertisement