diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-28 20:55:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-28 21:15:31 +0100 |
commit | ddc7bf61113328feb05252f57a4286574c69e521 (patch) | |
tree | 28919a3ac6b1e8061905d7b4ef1058c7a0bb207f | |
parent | 4f42beedc34837da5d1f4cc26405e5f998b005d1 (diff) |
valgrind: uninitialized variable
Change-Id: I3bae6d746d63d52a09e7209f7565d60c834ce7c0
-rw-r--r-- | vcl/inc/unx/salinst.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/unx/salinst.h b/vcl/inc/unx/salinst.h index 7ca4bf4603cc..7d8b45efd660 100644 --- a/vcl/inc/unx/salinst.h +++ b/vcl/inc/unx/salinst.h @@ -45,7 +45,7 @@ class VCLPLUG_GEN_PUBLIC X11SalInstance : public SalGenericInstance protected: SalXLib *mpXLib; public: - X11SalInstance( SalYieldMutex* pMutex ) : SalGenericInstance( pMutex ) {} + X11SalInstance( SalYieldMutex* pMutex ) : SalGenericInstance( pMutex ), mpXLib(NULL) {} virtual ~X11SalInstance(); virtual SalFrame* CreateChildFrame( SystemParentData* pParent, sal_uIntPtr nStyle ); |