connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit ca8f76aca38bd7be3d40157d054d2510e90e509a
Author:     Caolán McNamara <[email protected]>
AuthorDate: Mon Aug 27 10:59:33 2018 +0100
Commit:     Caolán McNamara <[email protected]>
CommitDate: Mon Aug 27 15:13:40 2018 +0200

    coverity#1438785 Uninitialized pointer field
    
    Change-Id: I62c26622992447fd0dbc5fa857cb7231e9d00154
    Reviewed-on: https://gerrit.libreoffice.org/59652
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <[email protected]>
    Tested-by: Caolán McNamara <[email protected]>

diff --git a/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx 
b/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx
index c52b587fba55..7d98cb0bd4a4 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx
@@ -98,6 +98,7 @@ OResultSet::OResultSet(OConnection& rConn, OCommonStatement* 
pStmt, MYSQL_RES* p
     : OResultSet_BASE(m_aMutex)
     , OPropertySetHelper(OResultSet_BASE::rBHelper)
     , m_rConnection(rConn)
+    , m_aRow(nullptr)
     , m_pMysql(rConn.getMysqlConnection())
     , m_aStatement(static_cast<OWeakObject*>(pStmt))
     , m_xMetaData(nullptr)
_______________________________________________
Libreoffice-commits mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to