[openssl-commits] [openssl] master update

Kurt Roeckx kurt at openssl.org
Tue Jun 28 16:30:55 UTC 2016


The branch master has been updated
       via  03cb37acec0c23a01bee4357cd59ec9f97e528ba (commit)
      from  d2b23cd2b077de8507c49f632e20dfcdb653a35b (commit)


- Log -----------------------------------------------------------------
commit 03cb37acec0c23a01bee4357cd59ec9f97e528ba
Author: Alex Gaynor <alex.gaynor at gmail.com>
Date:   Sun Jun 26 10:37:03 2016 -0400

    Add comment about X509_print
    
    Signed-off-by: Kurt Roeckx <kurt at roeckx.be>
    Reviewed-by: Emilia Kasper <emilia at openssl.org>
    
    GH: #1255

-----------------------------------------------------------------------

Summary of changes:
 fuzz/x509.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fuzz/x509.c b/fuzz/x509.c
index a0fab2f..cc6ff83 100644
--- a/fuzz/x509.c
+++ b/fuzz/x509.c
@@ -19,6 +19,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     X509 *x509 = d2i_X509(NULL, &p, len);
     if (x509 != NULL) {
         BIO *bio = BIO_new(BIO_s_null());
+        /* This will load and print the public key as well as extensions */
         X509_print(bio, x509);
         BIO_free(bio);
 


More information about the openssl-commits mailing list