Core/Misc: Fix static analysis issues

This commit is contained in:
jackpoz
2017-04-25 11:52:50 +02:00
parent 85076dd799
commit 65aeeafad3
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@
#include "Transaction.h"
#define _LIKE_ "LIKE"
#define _TABLE_SIM_ "`"
#define _TABLE_SIM_ '`'
#define _CONCAT3_(A, B, C) "CONCAT( " A ", " B ", " C " )"
#define _OFFSET_ "LIMIT %d, 1"

View File

@@ -986,7 +986,7 @@ GameTele const* ChatHandler::extractGameTeleFromLink(char* text)
return nullptr;
// id case (explicit or from shift link)
if (cId[0] >= '0' || cId[0] >= '9')
if (cId[0] >= '0' && cId[0] <= '9')
if (uint32 id = atoi(cId))
return sObjectMgr->GetGameTele(id);