Core: Fix .pinfo handling of player level and securitylevel after recent cleanups (and clean up my last commit)

This commit is contained in:
click
2012-03-24 22:59:23 +01:00
parent eb3305932c
commit cbcd4e6afb
2 changed files with 6 additions and 6 deletions

View File

@@ -202,10 +202,10 @@ MySQLPreparedStatement::~MySQLPreparedStatement()
{
ClearParameters();
if(m_Mstmt->bind_result_done)
{
delete[] m_Mstmt->bind->length;
delete[] m_Mstmt->bind->is_null;
}
{
delete[] m_Mstmt->bind->length;
delete[] m_Mstmt->bind->is_null;
}
mysql_stmt_close(m_Mstmt);
delete[] m_bind;
}