feat(Core/DB/Authserver): remove sha_pass_hash (#4827)
This commit is contained in:
parent
e9ed6380a6
commit
485f7e7639
54 changed files with 1095 additions and 744 deletions
|
|
@ -151,8 +151,15 @@ bool ResultSet::NextRow()
|
|||
return false;
|
||||
}
|
||||
|
||||
unsigned long* lengths = mysql_fetch_lengths(_result);
|
||||
if (!lengths)
|
||||
{
|
||||
CleanUp();
|
||||
return false;
|
||||
}
|
||||
|
||||
for (uint32 i = 0; i < _fieldCount; i++)
|
||||
_currentRow[i].SetStructuredValue(row[i], _fields[i].type);
|
||||
_currentRow[i].SetStructuredValue(row[i], _fields[i].type, lengths[i]);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue