On Fri, 2011-02-04 at 06:41 -0700, Tor Lillqvist wrote:
> > And after a while of dismissing these, saxparser goes into an infinite loop.
> 
> For me, saxparser crashes... I am debugging that but not really getting much 
> wiser.

does this patch, to revert a hash_map -> unordered_map make it "go away"

C.
diff --git a/cppu/source/uno/EnvStack.cxx b/cppu/source/uno/EnvStack.cxx
index c96d307..99322eb 100644
--- a/cppu/source/uno/EnvStack.cxx
+++ b/cppu/source/uno/EnvStack.cxx
@@ -36,7 +36,7 @@
 #include "osl/thread.h"
 #include "osl/mutex.hxx"
 
-#include <boost/unordered_map.hpp>
+#include <hash_map>
 
 
 using namespace com::sun::star;
@@ -65,7 +65,7 @@ size_t oslThreadIdentifier_hash::operator()(oslThreadIdentifier s1) const
     return s1;
 }
 
-typedef ::boost::unordered_map<oslThreadIdentifier,
+typedef ::std::hash_map<oslThreadIdentifier,
                         uno_Environment *,
                         oslThreadIdentifier_hash,
                         oslThreadIdentifier_equal>  ThreadMap;
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice

Reply via email to