diff options
author | Omar Polo <op@omarpolo.com> | 2021-10-24 16:57:31 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-10-24 16:57:31 +0000 |
commit | 193380eaa4b4fa001dd773b9ee94e2545eed5efa (patch) | |
tree | aa866731503d2e34764f410edce1a5bb6683f93a /gmid.c | |
parent | dcfdb969a267631fc9b787507c6ce6db7e290e48 (diff) |
free OCSP path when clearing the config
was forgotten in ff05125eb81e5bbf2cf05b8434d03bce584936e0
Diffstat (limited to 'gmid.c')
-rw-r--r-- | gmid.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -334,6 +334,7 @@ free_config(void) free((char*)h->domain); free((char*)h->cert); free((char*)h->key); + free((char*)h->ocsp); free((char*)h->cgi); free((char*)h->entrypoint); |