[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

bernd.edlinger at hotmail.de bernd.edlinger at hotmail.de
Tue Apr 3 14:11:36 UTC 2018


The branch OpenSSL_1_0_2-stable has been updated
       via  a3dbbe47f09336484c8c874a0b1838266b51a8e8 (commit)
      from  82ff31d3e78413677023ac04a4a5ff94f2371a24 (commit)


- Log -----------------------------------------------------------------
commit a3dbbe47f09336484c8c874a0b1838266b51a8e8
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Mon Apr 2 10:54:52 2018 +0200

    Change the "offset too large" message to more generic wording
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
    (Merged from https://github.com/openssl/openssl/pull/5826)
    
    (cherry picked from commit 1518c55a796b058eff01f3cbf177f4b726c01d7c)

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

Summary of changes:
 apps/asn1pars.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/asn1pars.c b/apps/asn1pars.c
index 6e7ed28..5b0def7 100644
--- a/apps/asn1pars.c
+++ b/apps/asn1pars.c
@@ -328,7 +328,7 @@ int MAIN(int argc, char **argv)
     }
 
     if (offset < 0 || offset >= num) {
-        BIO_printf(bio_err, "Error: offset too large\n");
+        BIO_printf(bio_err, "Error: offset out of range\n");
         goto end;
     }
 


More information about the openssl-commits mailing list