commit 0288902a1bada9456aa07593fc9d30b91fa97bd9
parent 91c44af6f0241428f0cabfadb380787960758a7d
Author: Joris Vink <joris@coders.se>
Date: Fri, 20 Feb 2015 10:11:15 +0100
Set crlfile to NULL when initializing.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/domain.c b/src/domain.c
@@ -48,6 +48,7 @@ kore_domain_new(char *domain)
dom->certkey = NULL;
dom->ssl_ctx = NULL;
dom->certfile = NULL;
+ dom->crlfile = NULL;
dom->domain = kore_strdup(domain);
TAILQ_INIT(&(dom->handlers));
TAILQ_INSERT_TAIL(&domains, dom, list);