Hi all,
currently 1.9.x builds are crashing when they try to open an OOo-native document format. MacOSX's console states the problem to be in XMLSignatureHelper::Init (located in xmlsecurity/source/helper/xmlsignaturehelper.cxx). Actually it is the statement just before the return of that function that causes the crash:
mxSecurityContext = mxSEInitializer->createSecurityContext( aTokenPath );
The exact problem is that mxSEInitializer seems to be a null pointer...
So, until the real source for this problem is found, here is a workaround that enables opening of native documents. Replace the above mentioned line with the following 4 lines:
if (mxSEInitializer.is())
mxSecurityContext = mxSEInitializer->createSecurityContext( aTokenPath );
else
mxSecurityContext = 0; //workaround for MacOSX
See issue #41276
Best regards, Florian
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
