1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-05 19:42:04 +02:00

fix memory leak in symetrically encrypted parsing

This commit is contained in:
B. Petersen 2017-11-28 15:56:25 +01:00
parent bcede906a5
commit fc95d55a28

View file

@ -1731,12 +1731,9 @@ pgp_reader_push_se_ip_data(pgp_stream_t *stream, pgp_crypt_t *decrypt,
void
pgp_reader_pop_se_ip_data(pgp_stream_t *stream)
{
/*
* decrypt_se_ip_t
* *se_ip=pgp_reader_get_arg(pgp_readinfo(stream));
*/
/* free(se_ip); */
decrypt_se_ip_t *se_ip=pgp_reader_get_arg(pgp_readinfo(stream));
pgp_reader_pop(stream);
free(se_ip);
}
/**************************************************************************/