diff options
author | Rich Salz <rsalz@akamai.com> | 2021-04-30 18:18:00 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-05-05 13:11:35 +0200 |
commit | f7050588bc76901e0a147c158e64ac3140dc8bfd (patch) | |
tree | 76a0453a8781c5e9ed61553d9086fa0ead7a4bca /crypto/conf/conf_api.c | |
parent | Allow absolute paths to be set (diff) | |
download | openssl-f7050588bc76901e0a147c158e64ac3140dc8bfd.tar.xz openssl-f7050588bc76901e0a147c158e64ac3140dc8bfd.zip |
Add .includedir pragma
Also add a negative test, and fix typo's.
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15090)
Diffstat (limited to 'crypto/conf/conf_api.c')
-rw-r--r-- | crypto/conf/conf_api.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/conf/conf_api.c b/crypto/conf/conf_api.c index c2c461d832..41a09c42bc 100644 --- a/crypto/conf/conf_api.c +++ b/crypto/conf/conf_api.c @@ -146,6 +146,7 @@ void _CONF_free_data(CONF *conf) * with */ + OPENSSL_free(conf->includedir); lh_CONF_VALUE_doall(conf->data, value_free_stack_doall); lh_CONF_VALUE_free(conf->data); } |