Kaydet (Commit) d7e1e8da authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1352212 Unchecked return value

Change-Id: I75a6853a6708585201dbc4722e7a19cd568a48f7
üst 144ce8b3
......@@ -100,10 +100,11 @@ void OPreparedStatement::ensurePrepared()
m_pInSqlda = static_cast<XSQLDA*>(calloc(1, XSQLDA_LENGTH(nItems)));
m_pInSqlda->version = SQLDA_VERSION1;
m_pInSqlda->sqln = nItems;
isc_dsql_describe_bind(m_statusVector,
&m_aStatementHandle,
1,
m_pInSqlda);
aErr = isc_dsql_describe_bind(m_statusVector,
&m_aStatementHandle,
1,
m_pInSqlda);
SAL_WARN_IF(aErr, "connectivity.firebird", "isc_dsql_describe_bind failed");
}
if (!aErr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment