Core/DBLayer:

- Fix another pesky linux specific compile error. (Thanks to Derex/Aokromes)
- Fix a typo in an assertion. (Thanks to Derex/Aokromes)
- Add proper zero termination in SetStructuredValue to get rid of memory issues that arose in the last few commits.
- Fix a crash caused by vsprintf´ing std::string in SystemMgr::LoadVersion()

--HG--
branch : trunk
This commit is contained in:
Machiavelli
2010-09-25 01:02:40 +02:00
parent 09aeff1027
commit 154d11acc0
4 changed files with 5 additions and 5 deletions

View File

@@ -43,7 +43,7 @@ void SystemMgr::LoadVersion()
{
Field* pFields = Result->Fetch();
sLog.outString("TSCR: Database version is: %s", pFields[0].GetString());
sLog.outString("TSCR: Database version is: %s", pFields[0].GetCString());
sLog.outString();
}
else