From: Matt Caswell Date: Mon, 18 Jul 2016 09:28:45 +0000 (+0100) Subject: Fix strict-warnings build X-Git-Tag: OpenSSL_1_1_0-pre6~210 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=33e49fda9635f3daabf912a8781abde0de681fe6;p=oweals%2Fopenssl.git 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 --- 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);