mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-06 03:50:08 +02:00
fix memory leak in symetrically encrypted parsing
This commit is contained in:
parent
bcede906a5
commit
fc95d55a28
1 changed files with 2 additions and 5 deletions
|
@ -1731,12 +1731,9 @@ pgp_reader_push_se_ip_data(pgp_stream_t *stream, pgp_crypt_t *decrypt,
|
||||||
void
|
void
|
||||||
pgp_reader_pop_se_ip_data(pgp_stream_t *stream)
|
pgp_reader_pop_se_ip_data(pgp_stream_t *stream)
|
||||||
{
|
{
|
||||||
/*
|
decrypt_se_ip_t *se_ip=pgp_reader_get_arg(pgp_readinfo(stream));
|
||||||
* decrypt_se_ip_t
|
|
||||||
* *se_ip=pgp_reader_get_arg(pgp_readinfo(stream));
|
|
||||||
*/
|
|
||||||
/* free(se_ip); */
|
|
||||||
pgp_reader_pop(stream);
|
pgp_reader_pop(stream);
|
||||||
|
free(se_ip);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**************************************************************************/
|
/**************************************************************************/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue