From 5d61c4f8bef10a702faa23a7f06508d5e6b35d2e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 5 Oct 2013 16:41:58 +0100 Subject: CID#738563 uninitialized member Change-Id: I5413099beb3b30f92b58f973fa4bb03f29e7f5c3 --- basic/source/basmgr/basmgr.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'basic') 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(); -- cgit v1.2.3