Browse Source

Fix inappropriate UnRefing in VaultCreateNodeTrans

Adam Johnson 10 years ago
parent
commit
8f8bad63f0
  1. 14
      Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.cpp

14
Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.cpp

@ -779,13 +779,14 @@ struct VaultCreateNodeTrans : NetAuthTrans {
void * m_param; void * m_param;
unsigned m_nodeId; unsigned m_nodeId;
VaultCreateNodeTrans ( VaultCreateNodeTrans (
NetVaultNode * templateNode, NetVaultNode * templateNode,
FNetCliAuthVaultNodeCreated callback, FNetCliAuthVaultNodeCreated callback,
void * param void * param
); );
~VaultCreateNodeTrans();
bool Send (); bool Send ();
void Post (); void Post ();
bool Recv ( bool Recv (
@ -4056,7 +4057,13 @@ VaultCreateNodeTrans::VaultCreateNodeTrans (
, m_param(param) , m_param(param)
, m_nodeId(0) , m_nodeId(0)
{ {
m_templateNode->Ref(); m_templateNode->Ref("VaultCreateNodeTrans");
}
//============================================================================
VaultCreateNodeTrans::~VaultCreateNodeTrans()
{
m_templateNode->UnRef("VaultCreateNodeTrans");
} }
//============================================================================ //============================================================================
@ -4086,7 +4093,6 @@ void VaultCreateNodeTrans::Post () {
m_param, m_param,
m_nodeId m_nodeId
); );
m_templateNode->UnRef();
} }
//============================================================================ //============================================================================

Loading…
Cancel
Save