diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-08-12 23:49:57 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-08-12 23:53:36 +0900 |
commit | f418927e6fc5228d9d08a2d11e0234661038374c (patch) | |
tree | 5b45f900f12309fd04591775451d8cf6eae70797 /basic/source/basmgr/basmgr.cxx | |
parent | 7ca3a646065bd9a0e4f61333ea474f8fca14a4fe (diff) |
cppcheck: fix possible null pointer dereference
Diffstat (limited to 'basic/source/basmgr/basmgr.cxx')
-rw-r--r-- | basic/source/basmgr/basmgr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx index 9fc864a2cc81..14626f6c7e2a 100644 --- a/basic/source/basmgr/basmgr.cxx +++ b/basic/source/basmgr/basmgr.cxx @@ -253,9 +253,9 @@ void BasMgrContainerListenerImpl::addLibraryModulesImpl( BasicManager* pMgr, else pLib->MakeModule32( aModuleName, aMod ); } - } - pLib->SetModified( sal_False ); + pLib->SetModified( sal_False ); + } } |