diff options
author | Richard Levitte <levitte@openssl.org> | 2020-04-25 04:11:09 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-04-28 00:03:17 +0200 |
commit | 60ebc0ca5a829e2ae939a9ab13658af202b6dfc7 (patch) | |
tree | 17c5cd1fb537ce3a45eb26258bc9b0986daa315c /fuzz | |
parent | i2b_PVK_bio: don't set PEM_R_BIO_WRITE_FAILURE in case of success (diff) | |
download | openssl-60ebc0ca5a829e2ae939a9ab13658af202b6dfc7.tar.xz openssl-60ebc0ca5a829e2ae939a9ab13658af202b6dfc7.zip |
fuzz/asn1.c: Add missing #include
<openssl/dsa.h> gets included via ts.h... except when 'no-ts' has been
configured.
Fixes #11597
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/11640)
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/asn1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzz/asn1.c b/fuzz/asn1.c index 9b122fc7a9..8fe8583815 100644 --- a/fuzz/asn1.c +++ b/fuzz/asn1.c @@ -23,6 +23,7 @@ #include <openssl/asn1.h> #include <openssl/asn1t.h> #include <openssl/dh.h> +#include <openssl/dsa.h> #include <openssl/ec.h> #include <openssl/ocsp.h> #include <openssl/pkcs12.h> |