Hello,
I am trying to use mpatrol on the Eclipse Platform and the MinGW tools on
Windows32.
I first built the libraries and executables (I had to remove -lintl in the
makefile because I do not have the library, I do not think this is important as
I do not plan to use the --dynamic option).
I build a simlpe application:
#include <malloc.h>
int main()
{
int* pnt, *qnt;
pnt = (int*)malloc(32*sizeof(int));
qnt = new int[10];
free(pnt);
delete [] qnt;
return 0;
}
and link it with the mpatrol library. If I then call mpatrol:
mpatrol.exe --log-all --leak-table myapp.exe
I get this message:
Application Error
The application failed to initialize properly (0xc0000005). Click on OK to
terminate the application.
Any ideas? Thanks in advance.
Jorge