extensions/source/propctrlr/formcomponenthandler.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 47350a7466656bc5d34f17dc3f5eb4a673131fba Author: Caolán McNamara <[email protected]> Date: Thu Feb 6 13:25:44 2014 +0000 coverity#707771 coverity gold, Uninitialized m_refCount Change-Id: I98398a3cd7a86a5f31c711f7f1cff0d467a1d2e5 (cherry picked from commit eb07ab05c3b8774ab2b2059befef0eadf61c97d6) Reviewed-on: https://gerrit.libreoffice.org/7901 Reviewed-by: Fridrich Strba <[email protected]> Tested-by: Fridrich Strba <[email protected]> diff --git a/extensions/source/propctrlr/formcomponenthandler.cxx b/extensions/source/propctrlr/formcomponenthandler.cxx index 58253b1..ce1ca98 100644 --- a/extensions/source/propctrlr/formcomponenthandler.cxx +++ b/extensions/source/propctrlr/formcomponenthandler.cxx @@ -2987,7 +2987,8 @@ namespace pcr { protected: SQLCommandPropertyUI( const Reference< XPropertySet >& _rxObject ) - :m_xObject( _rxObject ) + : m_xObject(_rxObject) + , m_refCount(0) { if ( !m_xObject.is() ) throw NullPointerException();
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
