diff options
author | Philipp Lohmann <pl@openoffice.org> | 2001-04-11 17:09:54 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2001-04-11 17:09:54 +0000 |
commit | bc5329e925ad86317a0889b310f0abb3a04e1849 (patch) | |
tree | 27cdfe140c7dfe0aa7f6905be376913a38bddab9 /vcl/source | |
parent | 973e36d8be91fe40b91a59dc26071a2a22fddf5c (diff) |
#86023# workaround memory corruption, fix in 628
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/app/svmain.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 52637655f893..3a0205b422d3 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svmain.cxx,v $ * - * $Revision: 1.19 $ + * $Revision: 1.20 $ * - * last change: $Author: th $ $Date: 2001-03-20 10:32:13 $ + * last change: $Author: pl $ $Date: 2001-04-11 18:09:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -684,10 +684,12 @@ void DeInitVCL() ImplFreeEventHookData(); ImplDeletePrnQueueList(); +#if SUPD != 627 delete pSVData->maGDIData.mpScreenFontList; pSVData->maGDIData.mpScreenFontList = NULL; delete pSVData->maGDIData.mpScreenFontCache; pSVData->maGDIData.mpScreenFontCache = NULL; +#endif ImplFreeOutDevFontData(); ResMgr::DestroyAllResMgr(); |