From: Alberto Leiva Popper Date: Thu, 21 Mar 2019 21:49:04 +0000 (-0600) Subject: Patch memory leak X-Git-Tag: v0.0.2~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eac1cb6fec2117a8cacf9d629169f4e731fe2226;p=thirdparty%2FFORT-validator.git Patch memory leak Probably fixes #5. --- diff --git a/README.md b/README.md index d0a50812..08529810 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Fort-validator - -(Not sure if that's going to be the final name.) +# FORT An RPKI Validator. +**Still under development!** + ## Installation Dependencies: diff --git a/src/rpp.c b/src/rpp.c index be3a0291..bcb7eda2 100644 --- a/src/rpp.c +++ b/src/rpp.c @@ -59,6 +59,7 @@ void rpp_destroy(struct rpp *pp) { uris_cleanup(&pp->certs, uri_cleanup); + uri_cleanup(&pp->crl); uris_cleanup(&pp->roas, uri_cleanup); uris_cleanup(&pp->ghostbusters, uri_cleanup); free(pp);