Run the comment converter on fuzz/ and tool/ Change-Id: I5ff73db09cc2871fca9cc18a74ad52636c6e753d Reviewed-on: https://boringssl-review.googlesource.com/19485 Commit-Queue: Adam Langley <agl@google.com> Reviewed-by: Adam Langley <agl@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
diff --git a/fuzz/cert.cc b/fuzz/cert.cc index b27237b..0bfcac4 100644 --- a/fuzz/cert.cc +++ b/fuzz/cert.cc
@@ -19,10 +19,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) { X509 *x509 = d2i_X509(NULL, &buf, len); if (x509 != NULL) { - /* Extract the public key. */ + // Extract the public key. EVP_PKEY_free(X509_get_pubkey(x509)); - /* Reserialize the structure. */ + // Reserialize the structure. uint8_t *der = NULL; i2d_X509(x509, &der); OPENSSL_free(der);