Beispiel #1
0
CDESEncrypt::~CDESEncrypt()
{
    if (NULL != m_pContext)
    {
        freecontext((DESContext *)m_pContext);
        m_pContext = NULL;
    }
}
Beispiel #2
0
redis_client::~redis_client()
{
    if (m_context != nullptr) {
        freecontext(m_context);
    }
}