Browse Source

added pointer check in RoutingDestination destructor

pull/60/head
cpubug 10 years ago
parent
commit
61001ef047
  1. 2
      Identity.h

2
Identity.h

@ -106,7 +106,7 @@ namespace data @@ -106,7 +106,7 @@ namespace data
public:
RoutingDestination (): m_ElGamalEncryption (nullptr) {};
virtual ~RoutingDestination () { delete m_ElGamalEncryption; };
virtual ~RoutingDestination () { if (m_ElGamalEncryption) delete m_ElGamalEncryption; };
virtual const IdentHash& GetIdentHash () const = 0;
virtual const uint8_t * GetEncryptionPublicKey () const = 0;

Loading…
Cancel
Save