- assertion in autotrust that packed rrset is formed correctly.
- Fix memory leak when message parse fails partway through copy.
- remove unused udpsize assignment in message encode.
+ - nicer bio free code in unbound-anchor.
11 September 2018: Wouter
- Fixed unused return value warnings in contrib/fastrpz.patch for
return bio;
}
-/** free up a downloaded file BIO */
-static void
-free_file_bio(BIO* bio)
-{
- BIO_free(bio);
-}
-
/** XML parse private data during the parse */
struct xml_data {
/** the parser, reference */
if(verb) printf("success: the anchor has been updated "
"using the cert\n");
- free_file_bio(xml);
- free_file_bio(p7s);
+ BIO_free(xml);
+ BIO_free(p7s);
#ifndef S_SPLINT_S
sk_X509_pop_free(cert, X509_free);
#endif