diff options
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/storage.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sot/source/sdstor/storage.cxx b/sot/source/sdstor/storage.cxx index 3ae023668533..9b408647cff7 100644 --- a/sot/source/sdstor/storage.cxx +++ b/sot/source/sdstor/storage.cxx @@ -775,7 +775,6 @@ SotStorage * SotStorage::OpenSotStorage( const OUString & rEleName, StreamMode nMode, StorageMode nStorageMode ) { - SotStorage * pStor = NULL; DBG_ASSERT( Owner(), "must be owner" ); if( m_pOwnStg ) { @@ -785,7 +784,7 @@ SotStorage * SotStorage::OpenSotStorage( const OUString & rEleName, (nStorageMode & STORAGE_TRANSACTED) ? false : true ); if( p ) { - pStor = new SotStorage( p ); + SotStorage * pStor = new SotStorage( p ); if( !nE ) m_pOwnStg->ResetError(); // kein Fehler setzen |