summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/filter/source/xsltfilter/XSLTFilter.cxx b/filter/source/xsltfilter/XSLTFilter.cxx
index 2764a37e1ca2..6feebdd08460 100644
--- a/filter/source/xsltfilter/XSLTFilter.cxx
+++ b/filter/source/xsltfilter/XSLTFilter.cxx
@@ -131,6 +131,8 @@ namespace XSLT
// ctor...
XSLTFilter(const css::uno::Reference<XMultiServiceFactory> &r);
+ ~XSLTFilter();
+
// XStreamListener
virtual void SAL_CALL
error(const Any& a) throw (RuntimeException);
@@ -167,6 +169,11 @@ m_rServiceFactory(r), m_bTerminated(sal_False), m_bError(sal_False)
m_cTransformed = osl_createCondition();
}
+ XSLTFilter::~XSLTFilter()
+ {
+ osl_destroyCondition(m_cTransformed);
+ }
+
void
XSLTFilter::disposing(const EventObject&) throw (RuntimeException)
{