mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
Apply style fix pt5
This commit is contained in:
parent
4727d8846f
commit
1a1110b4f7
67 changed files with 648 additions and 214 deletions
|
|
@ -90,7 +90,9 @@ void SQLStorageBase::Free()
|
|||
case DBC_FF_STRING:
|
||||
{
|
||||
for (uint32 recordItr = 0; recordItr < m_recordCount; ++recordItr)
|
||||
{ delete[] *(char**)((char*)(m_data + (recordItr * m_recordSize)) + offset); }
|
||||
{
|
||||
delete[] *(char**)((char*)(m_data + (recordItr * m_recordSize)) + offset);
|
||||
}
|
||||
|
||||
offset += sizeof(char*);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue