summaryrefslogtreecommitdiffstats
path: root/fuzz/ct.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-07-18 10:28:45 +0100
committerMatt Caswell <matt@openssl.org>2016-07-18 10:28:45 +0100
commit33e49fda9635f3daabf912a8781abde0de681fe6 (patch)
tree342f800ded767581a4c171d20cd03fa304402a6f /fuzz/ct.c
parent9515accaf973ad314e03bdc048b13ec3509cb2e9 (diff)
Fix strict-warnings build
The i2d_SCT_LIST function is declared as __owur, therefore we need to check the result or a --strict-warnings build will fail. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'fuzz/ct.c')
-rw-r--r--fuzz/ct.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fuzz/ct.c b/fuzz/ct.c
index 0abcd8aa97..411ccef4a0 100644
--- a/fuzz/ct.c
+++ b/fuzz/ct.c
@@ -29,7 +29,9 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
SCT_LIST_print(scts, bio, 4, "\n", NULL);
BIO_free(bio);
- i2d_SCT_LIST(scts, &der);
+ if (i2d_SCT_LIST(scts, &der)) {
+ /* Silence unused result warning */
+ }
OPENSSL_free(der);
SCT_LIST_free(scts);