summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-08-12 23:49:57 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-08-12 23:53:36 +0900
commitf418927e6fc5228d9d08a2d11e0234661038374c (patch)
tree5b45f900f12309fd04591775451d8cf6eae70797 /basic
parent7ca3a646065bd9a0e4f61333ea474f8fca14a4fe (diff)
cppcheck: fix possible null pointer dereference
Diffstat (limited to 'basic')
-rw-r--r--basic/source/basmgr/basmgr.cxx4
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 );
+ }
}