[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - connectivity/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Tue Nov 6 09:07:13 UTC 2018
connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f9b39df65d4799a419c9099bf18d5a67934f1172
Author: Tamas Bunth <tamas.bunth at collabora.co.uk>
AuthorDate: Mon Nov 5 23:06:01 2018 +0100
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Tue Nov 6 10:06:23 2018 +0100
Fix isssue with constructor expecting three params
Change-Id: I3f018e34b07d60d45597cdf321f5e3429a13e44c
Reviewed-on: https://gerrit.libreoffice.org/62925
Reviewed-by: Tor Lillqvist <tml at collabora.com>
Tested-by: Tor Lillqvist <tml at collabora.com>
diff --git a/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx b/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx
index b632f30590e8..d08a31bab11e 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_resultset.cxx
@@ -125,7 +125,7 @@ OResultSet::OResultSet(OConnection& rConn, OCommonStatement* pStmt, MYSQL_RES* p
, m_pResult(pResult)
, m_encoding(_encoding)
{
- m_xMetaData = new OResultSetMetaData(m_rConnection, m_pResult);
+ m_xMetaData = new OResultSetMetaData(m_rConnection, m_pResult, m_encoding);
}
void OResultSet::ensureResultFetched()
More information about the Libreoffice-commits
mailing list