mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 09:37:10 -04:00
4882. [bug] Address potential memory leak in
dns_update_signaturesinc. [RT #47084]
This commit is contained in:
parent
a64503c736
commit
7817caa3c7
2 changed files with 7 additions and 0 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4882. [bug] Address potential memory leak in
|
||||
dns_update_signaturesinc. [RT #47084]
|
||||
|
||||
4881. [bug] Only include dst_openssl.h when OpenSSL is required.
|
||||
[RT #47068]
|
||||
|
||||
|
|
|
|||
|
|
@ -2008,6 +2008,10 @@ dns_update_signaturesinc(dns_update_log_t *log, dns_zone_t *zone, dns_db_t *db,
|
|||
}
|
||||
|
||||
failure:
|
||||
if (node != NULL) {
|
||||
dns_db_detachnode(db, &node);
|
||||
}
|
||||
|
||||
dns_diff_clear(&state->sig_diff);
|
||||
dns_diff_clear(&state->nsec_diff);
|
||||
dns_diff_clear(&state->nsec_mindiff);
|
||||
|
|
|
|||
Loading…
Reference in a new issue