Core/DBLayer: Last of the QueryResult related warnings on linux

--HG--
branch : trunk
This commit is contained in:
Machiavelli
2010-09-11 22:27:56 +02:00
parent d1174be1fd
commit 6fa05cfa3e

View File

@@ -185,8 +185,10 @@ class PreparedResultSet
{
template<class T> friend class DatabaseWorkerPool;
public:
PreparedResultSet(MYSQL_STMT* stmt) : num_rows(0), row_position(0)
PreparedResultSet(MYSQL_STMT* stmt)
{
num_rows = 0;
row_position = 0;
rbind = new ResultBind(stmt);
rbind->BindResult(num_rows);
}