Redo deletion of some serverinfo code that supplemental data code mistakenly reinstated.
authorTrevor Perrin <unsafe@trevp.net>
Sat, 14 Sep 2013 01:31:48 +0000 (18:31 -0700)
committerScott Deboy <sdeboy@secondstryke.com>
Sun, 9 Feb 2014 00:15:10 +0000 (16:15 -0800)
ssl/ssl_rsa.c

index 0a28950875230de0ab3519402c2b0d825bb2b853..7fcd8460a3e5832c385e264f033b154b4f77225b 100644 (file)
@@ -459,15 +459,6 @@ static int ssl_set_cert(CERT *c, X509 *x)
                X509_free(c->pkeys[i].x509);
        CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
        c->pkeys[i].x509=x;
-#ifndef OPENSSL_NO_TLSEXT
-       /* Free the old serverinfo data, if it exists. */
-       if (c->pkeys[i].serverinfo != NULL)
-               {
-               OPENSSL_free(c->pkeys[i].serverinfo);
-               c->pkeys[i].serverinfo = NULL;
-               c->pkeys[i].serverinfo_length = 0;
-               }
-#endif
        c->key= &(c->pkeys[i]);
 
        c->valid=0;