diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-07-05 21:23:04 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-07-05 22:41:09 +0200 |
commit | ce55457a8fb065a1cd0796d3e748e6133a551a39 (patch) | |
tree | 20d9649c2f5b6b2d1f00f41db35a61bd9a13d1ea /dbaccess | |
parent | c414389e8790b1b044684627b3f4169e4559ca24 (diff) |
coverity#708787 Unused pointr value
Change-Id: Ib1b0dd07be41d382fa24edbb37d30cbe9ea193fa
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/RowSetCache.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/RowSetCache.cxx b/dbaccess/source/core/api/RowSetCache.cxx index 5192dee57e86..f4e84dc98617 100644 --- a/dbaccess/source/core/api/RowSetCache.cxx +++ b/dbaccess/source/core/api/RowSetCache.cxx @@ -1595,7 +1595,7 @@ bool ORowSetCache::checkJoin(const Reference< XConnection>& _xConnection, if(bCheck) { // here we know that we have to check on which side our table resides - const OSQLParseNode* pTableRef = pJoin->getByRule(::connectivity::OSQLParseNode::qualified_join); + const OSQLParseNode* pTableRef; if(bLeftSide) pTableRef = pJoin->getChild(0); else |