game_shared: workaround crash on exit (caused by GoldSrc dlclosing client before initializing it)
This commit is contained in:
parent
3c55a584a3
commit
d62c5fda47
@ -129,6 +129,8 @@ CVoiceStatus::CVoiceStatus()
|
||||
|
||||
m_bTalking = m_bServerAcked = false;
|
||||
|
||||
// a1ba: should be safe, it's a simple type
|
||||
memset(m_Labels, 0, sizeof(m_Labels));
|
||||
memset(m_pBanButtons, 0, sizeof(m_pBanButtons));
|
||||
|
||||
m_bServerModEnable = -1;
|
||||
@ -156,7 +158,7 @@ CVoiceStatus::~CVoiceStatus()
|
||||
|
||||
FreeBitmaps();
|
||||
|
||||
if(gEngfuncs.pfnGetGameDirectory())
|
||||
if(gEngfuncs.pfnGetGameDirectory && gEngfuncs.pfnGetGameDirectory())
|
||||
{
|
||||
if(m_bBanMgrInitialized)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user