The following code in simple project in Microsoft Visual Studio 2010 with Intel Parallel Studio 2011 (Intel Parallel Composer 2011 beta Update 2 (Package ID: composer_2011_beta_update2.031)) always produces an error.
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
tbb::pipeline* p = new tbb::pipeline;
delete p;
return 0;
}
Message dialog box:
Windows has triggered a breakpoint in TestPipeline.exe. This may be due to a corruption of the heap, which indicates a bug in TestPipeline.exe or any of the DLLs it has loaded. This may also be due to the user pressing F12 while TestPipeline.exe has focus. The output window may have more diagnostic information.
Test project is attached.



