summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/free/freenull.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/free/freenull.c b/src/regress/lib/libcrypto/free/freenull.c
index 565f1f80cc..2735e7f759 100644
--- a/src/regress/lib/libcrypto/free/freenull.c
+++ b/src/regress/lib/libcrypto/free/freenull.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: freenull.c,v 1.12 2018/05/15 07:08:16 tb Exp $ */ 1/* $OpenBSD: freenull.c,v 1.13 2018/05/15 07:11:31 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2017 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2017 Bob Beck <beck@openbsd.org>
4 * 4 *
@@ -19,6 +19,7 @@
19#include <openssl/cmac.h> 19#include <openssl/cmac.h>
20#include <openssl/comp.h> 20#include <openssl/comp.h>
21#include <openssl/conf_api.h> 21#include <openssl/conf_api.h>
22#include <openssl/dso.h>
22#ifndef OPENSSL_NO_ENGINE 23#ifndef OPENSSL_NO_ENGINE
23#include <openssl/engine.h> 24#include <openssl/engine.h>
24#endif 25#endif
@@ -89,6 +90,7 @@ main(int argc, char **argv)
89 DSA_SIG_free(NULL); 90 DSA_SIG_free(NULL);
90 DSA_free(NULL); 91 DSA_free(NULL);
91 DSA_meth_free(NULL); 92 DSA_meth_free(NULL);
93 DSO_free(NULL);
92 ECDSA_SIG_free(NULL); 94 ECDSA_SIG_free(NULL);
93 EC_GROUP_clear_free(NULL); 95 EC_GROUP_clear_free(NULL);
94 EC_GROUP_free(NULL); 96 EC_GROUP_free(NULL);