G
GG
Hello.
I have structure :
typedef struct SBlog {
long id_blog;
char bl_name[64];
char bl_domain[64];
} SBLOG, *PBLOG;
I made table:
BLOG pBlog = new SBlog[10]
When I try free memory :
delete [] pBlog
I get error :
Debug Assertion Failed !!!.
What I do wrong ???
Thanks for your help
GG
I have structure :
typedef struct SBlog {
long id_blog;
char bl_name[64];
char bl_domain[64];
} SBLOG, *PBLOG;
I made table:
BLOG pBlog = new SBlog[10]
When I try free memory :
delete [] pBlog
I get error :
Debug Assertion Failed !!!.
What I do wrong ???
Thanks for your help
GG