mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-31 16:01:29 +00:00
Fix for DBCore crash
This commit is contained in:
parent
2af6e8cd16
commit
a2500ff814
@ -38,6 +38,7 @@ DBcore::DBcore() {
|
||||
pDatabase = 0;
|
||||
pCompress = false;
|
||||
pSSL = false;
|
||||
pStatus = Closed;
|
||||
}
|
||||
|
||||
DBcore::~DBcore() {
|
||||
@ -180,9 +181,10 @@ bool DBcore::Open(uint32* errnum, char* errbuf) {
|
||||
LockMutex lock(&MDatabase);
|
||||
if (GetStatus() == Connected)
|
||||
return true;
|
||||
if (GetStatus() == Error)
|
||||
if (GetStatus() == Error) {
|
||||
mysql_close(&mysql);
|
||||
mysql_init(&mysql); // Initialize structure again
|
||||
}
|
||||
if (!pHost)
|
||||
return false;
|
||||
/*
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user