- Fix to MDEV-9579 be testing for void result.

modified:   storage/connect/tabodbc.cpp
This commit is contained in:
Olivier Bertrand 2016-02-20 00:22:16 +01:00
parent d163ad338d
commit 69042ffe4e

View File

@ -912,8 +912,7 @@ bool TDBODBC::OpenDB(PGLOBAL g)
if ((n = Ocp->GetResultSize(Query->GetStr(), Cnp)) < 0) {
strcpy(g->Message, "Cannot get result size");
return true;
} // endif n
} else if (n) {
Ocp->m_Rows = n;
if ((Qrp = Ocp->AllocateResult(g)))
@ -923,6 +922,9 @@ bool TDBODBC::OpenDB(PGLOBAL g)
return true;
} // endif n
} else // Void result
Memory = 0;
Ocp->m_Rows = 0;
} else
return true;