diff options
author | Andreas Bregas <ab@openoffice.org> | 2001-11-23 16:35:38 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2001-11-23 16:35:38 +0000 |
commit | a9b6b5c744123567e4cfb06bd1d3d422c8e392a7 (patch) | |
tree | da189d5cef79cc32a16f38936a5e68452c51e126 /basic | |
parent | 6caff0a605efddfbe54486ef22caf79b8711540d (diff) |
#95211# BasicManager::Store(): Check mpManagerStream for NULL
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/basmgr/basmgr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index 48737d9b7ced..12678000be8f 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: basmgr.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: ab $ $Date: 2001-11-22 13:36:33 $ + * last change: $Author: ab $ $Date: 2001-11-23 17:35:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1328,7 +1328,7 @@ void BasicManager::Store( SotStorage& rStorage, BOOL bStoreLibs ) } // #91626 - if( !bModified && bStoreLibs ) + if( !bModified && bStoreLibs && mpImpl->mpManagerStream ) { // Store saved streams SotStorageStreamRef xManagerStream = rStorage.OpenSotStream( |