Fix release build failure
The pEnd variable was used but not defined in release builds.
This commit is contained in:
@ -44,7 +44,7 @@ int get_info(MYSQL* pMysql, Callback pCallback, void* pCollection)
|
||||
|
||||
while ((row = mysql_fetch_row(pResult)) != NULL)
|
||||
{
|
||||
ss_debug(char* pEnd);
|
||||
char* pEnd;
|
||||
|
||||
int64_t total = strtoll(row[2], &pEnd, 0);
|
||||
ss_dassert(*pEnd == 0);
|
||||
|
Reference in New Issue
Block a user