id summary reporter owner description type status milestone component version severity resolution keywords cc 295 Is there a Bug In boost::any palzhou kevlin "{{{ Is there a Bug In boost::any Description: In my DLLThere is a class as follows: class MyClass { ... boost::any m_var; } and DLL has an interface void SetVar(boost::any & anyValue) { pMyClass->m_var = anyValue; } There is an application uses the SetVar interface and pass into a boost::any object. void SomeFunc() { ... boost::any anyValue; ... pfSetVar(anyValue); ... } result: when exit, The application will be crash , the spot of crash is at the destruction of class boost::any. ... class any { ... ~any() { delete content; // errorerror code 0xC0000005 } ... } ... environment: MS windows 2000 pro sp4 MS vc6 sp5 boost 1.31 }}}" Bugs closed None None Problem Rejected