Fix release build failure

The pEnd variable was used but not defined in release builds.
This commit is contained in:
Markus Mäkelä
2018-05-16 13:07:46 +03:00
parent 654b5f1958
commit 8daf8418de

View File

@ -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);