summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-05 16:41:58 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-07 09:16:24 +0100
commit5d61c4f8bef10a702faa23a7f06508d5e6b35d2e (patch)
tree98dd4f980bc6664406be69f25ffa3ea1b8a3a2a2 /basic
parentbb84effbc0e4fe1b718ff8aa101c3811b0c568e4 (diff)
CID#738563 uninitialized member
Change-Id: I5413099beb3b30f92b58f973fa4bb03f29e7f5c3
Diffstat (limited to 'basic')
-rw-r--r--basic/source/basmgr/basmgr.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/basic/source/basmgr/basmgr.cxx b/basic/source/basmgr/basmgr.cxx
index 1b31518f27f9..96dc43417177 100644
--- a/basic/source/basmgr/basmgr.cxx
+++ b/basic/source/basmgr/basmgr.cxx
@@ -446,8 +446,12 @@ private:
size_t CurrentLib;
public:
+ BasicLibs()
+ : CurrentLib(0)
+ {
+ }
~BasicLibs();
- OUString aBasicLibPath; // TODO: Should be member of manager, but currently not incompatible
+ OUString aBasicLibPath; // TODO: Should be member of manager, but currently not incompatible
BasicLibInfo* GetObject( size_t i );
BasicLibInfo* First();
BasicLibInfo* Next();