]> git.ipfire.org Git - thirdparty/FORT-validator.git/commitdiff
Patch memory leak
authorAlberto Leiva Popper <ydahhrk@gmail.com>
Thu, 21 Mar 2019 21:49:04 +0000 (15:49 -0600)
committerAlberto Leiva Popper <ydahhrk@gmail.com>
Thu, 21 Mar 2019 21:49:04 +0000 (15:49 -0600)
Probably fixes #5.

README.md
src/rpp.c

index d0a5081217e04879b4e4fcf5f826d7b602e26d70..0852981051c4836337f69768fb91990684ef80b5 100644 (file)
--- 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:
index be3a029113780bd8a664aac0c58de75bade0fd61..bcb7eda27bbb6594dd2061db7cebae4b6848a97e 100644 (file)
--- 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);