diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-25 11:43:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-25 13:56:09 +0100 |
commit | f0c0c62c10e4ffdb9ce44202e2540d2f39a9fcb5 (patch) | |
tree | 87e56802c81b64abe4b0f0659f178cacb5bdbd21 /include/comphelper | |
parent | 6e968d18951ff0c27d2aa7aa2a34f8d78634023f (diff) |
uninitialised field in comphelper::WeakComponentImplHelperBase
Change-Id: I7ab702c0dd61231b334aac647e87233095cc69e0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127450
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/compbase.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/compbase.hxx b/include/comphelper/compbase.hxx index 6cd969386034..9a8ea3bb6a24 100644 --- a/include/comphelper/compbase.hxx +++ b/include/comphelper/compbase.hxx @@ -47,7 +47,7 @@ public: protected: comphelper::OInterfaceContainerHelper4<css::lang::XEventListener> maEventListeners; mutable std::mutex m_aMutex; - bool m_bDisposed; + bool m_bDisposed = false; }; template <typename... Ifc> |