summaryrefslogtreecommitdiffstats
path: root/fuzz/ct.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/ct.c')
-rw-r--r--fuzz/ct.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/fuzz/ct.c b/fuzz/ct.c
index 5dc47f1f15..0abcd8aa97 100644
--- a/fuzz/ct.c
+++ b/fuzz/ct.c
@@ -22,7 +22,17 @@ int FuzzerInitialize(int *argc, char ***argv) {
int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
const uint8_t **pp = &buf;
+ unsigned char *der = NULL;
STACK_OF(SCT) *scts = d2i_SCT_LIST(NULL, pp, len);
- SCT_LIST_free(scts);
+ if (scts != NULL) {
+ BIO *bio = BIO_new(BIO_s_null());
+ SCT_LIST_print(scts, bio, 4, "\n", NULL);
+ BIO_free(bio);
+
+ i2d_SCT_LIST(scts, &der);
+ OPENSSL_free(der);
+
+ SCT_LIST_free(scts);
+ }
return 0;
}