summaryrefslogtreecommitdiff
path: root/sw/source/filter/ascii/parasc.cxx
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2002-02-08 11:13:32 +0000
committerjp <jp@openoffice.org>2002-02-08 11:13:32 +0000
commit5a004a3cbf272e1eacd03d5156c11c51c401597d (patch)
treea742d331845f80f0b76115363c50a0df1a4808e6 /sw/source/filter/ascii/parasc.cxx
parentd71b43eb8ee00317fe3fd64a6d9aeaef1b4616d2 (diff)
Bug #97378#: destroy context before destroy the converter
Diffstat (limited to 'sw/source/filter/ascii/parasc.cxx')
-rw-r--r--sw/source/filter/ascii/parasc.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ascii/parasc.cxx b/sw/source/filter/ascii/parasc.cxx
index 6b0c9ca6cf63..6c862ca62948 100644
--- a/sw/source/filter/ascii/parasc.cxx
+++ b/sw/source/filter/ascii/parasc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: parasc.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jp $ $Date: 2002-02-08 12:06:44 $
+ * last change: $Author: jp $ $Date: 2002-02-08 12:13:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -918,8 +918,8 @@ ULONG SwASCIIParser::ReadChars()
if( hConverter )
{
- rtl_destroyTextToUnicodeConverter( hConverter );
rtl_destroyTextToUnicodeContext( hConverter, hContext );
+ rtl_destroyTextToUnicodeConverter( hConverter );
}
return 0;
}