What steps will reproduce the problem?
1. Import libtcmalloc_minimal.vcproj to MS VS C++ 2010
2. Made configuration for debug/x64 an genereate DLL und LIB with success
3. Create a new project for debug/x64 an the following code
#include "stdafx.h"
#include "tcmalloc.h"
class mullerC
{public:
int Heinz;
mullerC(){Heinz=1789;}
};
int _tmain(int argc, _TCHAR* argv[])
{mullerC muller;
void *mem = tc_malloc(50000);
tc_free(mem);
return 0;
}
What is the expected output? What do you see instead?
If you run this, vc++ stops with an exception in msvcr100d.dll|operator new
What version of the product are you using? On what operating system?
Win7 64-Bit,Visual Studio 2010, perftools 1.9.1
Please provide any additional information below.
Original issue reported on code.google.com by hs.profi...@gmail.com on 10 Jan 2012 at 12:40
Original issue reported on code.google.com by
hs.profi...@gmail.com
on 10 Jan 2012 at 12:40