diff --git a/src/shared/Database/QueryResultPostgre.cpp b/src/shared/Database/QueryResultPostgre.cpp index 7d989dbb0..3cb769515 100644 --- a/src/shared/Database/QueryResultPostgre.cpp +++ b/src/shared/Database/QueryResultPostgre.cpp @@ -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 ))); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 4e1b6cfd3..4fc7a7b1d 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10450" + #define REVISION_NR "10451" #endif // __REVISION_NR_H__