]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
These two variables were left uninitialized accidentally.
authorCliff Woolley <jwoolley@apache.org>
Fri, 29 Mar 2002 07:12:01 +0000 (07:12 +0000)
committerCliff Woolley <jwoolley@apache.org>
Fri, 29 Mar 2002 07:12:01 +0000 (07:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94297 13f79535-47bb-0310-9956-ffa450edef68

ssl_scache_shmcb.c

index b3ebbaab87edc119b1176827b5242d5bf127ee93..2595789395243a6e953dabb539ef124ec1ffd1c7 100644 (file)
@@ -1331,6 +1331,9 @@ static BOOL shmcb_remove_session_id(
                         "internal error");
                 goto end;
             }
+            session_id_length = SSL_SESSION_get_session_id_length(pSession);
+            session_id = SSL_SESSION_get_session_id(pSession);
+
             if ((session_id_length == idlen) 
                  && (memcmp(id, session_id, idlen) == 0)) {
                 ssl_log(s, SSL_LOG_TRACE, "a match!");