[10451] Replace ASSERT by MANGOS_ASSERT

Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
narma 2010-09-07 14:26:26 +03:00 committed by Laise
parent 72414ad03b
commit 5dbb561b50
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ QueryResultPostgre::QueryResultPostgre(PGresult *result, uint64 rowCount, uint32
{
mCurrentRow = new Field[mFieldCount];
ASSERT(mCurrentRow);
MANGOS_ASSERT(mCurrentRow);
for (uint32 i = 0; i < mFieldCount; i++)
mCurrentRow[i].SetType(ConvertNativeType(PQftype( result, i )));

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10450"
#define REVISION_NR "10451"
#endif // __REVISION_NR_H__