aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fuzz/client.cc1
-rw-r--r--fuzz/server.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/fuzz/client.cc b/fuzz/client.cc
index c491893..bd9474b 100644
--- a/fuzz/client.cc
+++ b/fuzz/client.cc
@@ -18,7 +18,6 @@ static GlobalState g_state;
extern "C" int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
RAND_reset_for_fuzzing();
- // This only fuzzes the initial flow from the server so far.
SSL *client = SSL_new(g_state.ctx);
BIO *in = BIO_new(BIO_s_mem());
BIO *out = BIO_new(BIO_s_mem());
diff --git a/fuzz/server.cc b/fuzz/server.cc
index 1904e4f..970ab70 100644
--- a/fuzz/server.cc
+++ b/fuzz/server.cc
@@ -207,7 +207,6 @@ static GlobalState g_state;
extern "C" int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
RAND_reset_for_fuzzing();
- // This only fuzzes the initial flow from the client so far.
SSL *server = SSL_new(g_state.ctx);
BIO *in = BIO_new(BIO_s_mem());
BIO *out = BIO_new(BIO_s_mem());