Core: Generic cleanup (tab2spaces/whitespace removal)

--HG--
branch : trunk
This commit is contained in:
click
2010-09-25 22:03:57 +02:00
parent a596cae1d9
commit 461590832a
21 changed files with 43 additions and 43 deletions

View File

@@ -53,7 +53,7 @@ m_rowPosition(0)
m_rBind = new MYSQL_BIND[m_fieldCount];
m_isNull = new my_bool[m_fieldCount];
m_length = new unsigned long[m_fieldCount];
memset(m_isNull, 0, sizeof(my_bool) * m_fieldCount);
memset(m_rBind, 0, sizeof(MYSQL_BIND) * m_fieldCount);
memset(m_length, 0, sizeof(unsigned long) * m_fieldCount);
@@ -219,7 +219,7 @@ void PreparedResultSet::CleanUp()
FreeBindBuffer();
mysql_stmt_free_result(m_stmt);
delete[] m_rBind;
delete[] m_rBind;
}
void PreparedResultSet::FreeBindBuffer()