fixed GH #1665: CipherImpl memory leak with OpenSSL 1.1

This commit is contained in:
Guenter Obiltschnig 2017-04-16 08:32:57 +02:00
parent c5c75e1989
commit a141f9fbe1
6 changed files with 18 additions and 4 deletions

View File

@ -1,5 +1,11 @@
This is the changelog file for the POCO C++ Libraries.
Release 1.7.8p1 (2017-04-16)
============================
- fixed GH #1655: CipherImpl memory leak with OpenSSL 1.1
Release 1.7.8 (2017-02-21)
==========================

View File

@ -119,6 +119,7 @@ namespace
{
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
EVP_CIPHER_CTX_cleanup(_pContext);
EVP_CIPHER_free(_pContext);
#else
EVP_CIPHER_CTX_cleanup(&_context);
#endif

View File

@ -4,8 +4,8 @@
#include "winres.h"
#define POCO_VERSION 1,7,8,0
#define POCO_VERSION_STR "1.7.8"
#define POCO_VERSION 1,7,8,1
#define POCO_VERSION_STR "1.7.8p1"
VS_VERSION_INFO VERSIONINFO
FILEVERSION POCO_VERSION

View File

@ -37,7 +37,7 @@
// Ax: alpha releases
// Bx: beta releases
//
#define POCO_VERSION 0x01070800
#define POCO_VERSION 0x01070801
#endif // Foundation_Version_INCLUDED

View File

@ -1 +1 @@
1.7.8
1.7.8p1

View File

@ -1,6 +1,13 @@
POCO C++ Libraries Release Notes
AAAIntroduction
!!!Release 1.7.8p1
!!Summary of Changes
- fixed GH #1655: CipherImpl memory leak with OpenSSL 1.1
!!!Release 1.7.8
!!Summary of Changes