I wrote a program using VC++.
I use the library files (vld.h) to detect the memory leak problem.
I face memory leak problem.
Here is the sample.
char * a;
UCHAR b[100];
.
.
.
a = (char *) b;
std::string c = std::string(a);
Can anyone help me?
Thanks.
