1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +03:00

removed redundant x509_free() in do_client_connect()

git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@176 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
cameronrich
2010-08-07 07:34:41 +00:00
parent 09e79822d5
commit c69b6901fb
3 changed files with 15 additions and 16 deletions

View File

@ -123,7 +123,7 @@ int do_clnt_handshake(SSL *ssl, int handshake_type, uint8_t *buf, int hs_len)
case HS_FINISHED:
ret = process_finished(ssl, hs_len);
disposable_free(ssl); /* free up some memory */
/* note: client renogiation is not allowed after this */
/* note: client renegotiation is not allowed after this */
break;
case HS_HELLO_REQUEST:
@ -146,7 +146,6 @@ int do_client_connect(SSL *ssl)
ssl->bm_read_index = 0;
ssl->next_state = HS_SERVER_HELLO;
ssl->hs_status = SSL_NOT_OK; /* not connected */
x509_free(ssl->x509_ctx);
/* sit in a loop until it all looks good */
while (ssl->hs_status != SSL_OK)