You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2017/01/25 23:33:45 UTC

[trafficserver] branch 7.1.x updated: Fix CID 1369398: Null pointer dereferences

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 7.1.x
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/7.1.x by this push:
       new  ac4a369   Fix CID 1369398: Null pointer dereferences
ac4a369 is described below

commit ac4a369c4809e90f9d7f58e4298c1b8668d152a6
Author: Randall Meyer <ra...@yahoo.com>
AuthorDate: Wed Jan 25 07:31:55 2017 -0800

    Fix CID 1369398: Null pointer dereferences
    
    (cherry picked from commit 0235d555a5606a9f97dd78f52fa923c36ab2dab5)
---
 iocore/net/OCSPStapling.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/OCSPStapling.cc b/iocore/net/OCSPStapling.cc
index ef7e8dd..c73f883 100644
--- a/iocore/net/OCSPStapling.cc
+++ b/iocore/net/OCSPStapling.cc
@@ -413,7 +413,7 @@ ssl_callback_ocsp_stapling(SSL *ssl)
   // originally was, cinf = stapling_get_cert_info(ssl->ctx);
   cinf = stapling_get_cert_info(SSL_get_SSL_CTX(ssl));
   if (cinf == nullptr) {
-    Error("ssl_callback_ocsp_stapling: failed to get certificate information for %s", cinf->certname);
+    Error("ssl_callback_ocsp_stapling: failed to get certificate information");
     return SSL_TLSEXT_ERR_NOACK;
   }
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].