diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2016-11-19 17:10:35 +0100 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2016-12-03 00:14:14 +0100 |
commit | f3e911d5ed16db6a129306675e20e51d1ee81e1a (patch) | |
tree | b252ec0a8a29d5cbf24288a58dd7e7cd82664bb1 /fuzz/cms.c | |
parent | Fix a typo in bio_read_intern (diff) | |
download | openssl-f3e911d5ed16db6a129306675e20e51d1ee81e1a.tar.xz openssl-f3e911d5ed16db6a129306675e20e51d1ee81e1a.zip |
Fix formatting of fuzzers
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #2023
Diffstat (limited to 'fuzz/cms.c')
-rw-r--r-- | fuzz/cms.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fuzz/cms.c b/fuzz/cms.c index 94390e7c91..71d8b6953c 100644 --- a/fuzz/cms.c +++ b/fuzz/cms.c @@ -16,11 +16,13 @@ #include <openssl/cms.h> #include "fuzzer.h" -int FuzzerInitialize(int *argc, char ***argv) { +int FuzzerInitialize(int *argc, char ***argv) +{ return 1; } -int FuzzerTestOneInput(const uint8_t *buf, size_t len) { +int FuzzerTestOneInput(const uint8_t *buf, size_t len) +{ CMS_ContentInfo *i; BIO *in; if (!len) { |