diff options
| author | venaas <venaas> | 2008-09-13 07:30:36 +0000 | 
|---|---|---|
| committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-09-13 07:30:36 +0000 | 
| commit | 69a0d3aebfa4725c72b4843369d2c0a7c71a569b (patch) | |
| tree | f537d264b98fd5afe3651540eea92c30f520bd17 | |
| parent | a1ea5fc103e04c1d333bebb6e68b3699a414d1e9 (diff) | |
allow %hex notation for strings in gconfig
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@376 e88ac4ed-0b26-0410-9574-a7f39faa03bf
| -rw-r--r-- | dtls.c | 6 | ||||
| -rw-r--r-- | tls.c | 6 | 
2 files changed, 8 insertions, 4 deletions
| @@ -330,8 +330,10 @@ void *dtlsservernew(void *arg) {  	X509_free(cert);   exit: -    SSL_shutdown(ssl); -    SSL_free(ssl); +    if (ssl) { +	SSL_shutdown(ssl); +	SSL_free(ssl); +    }      pthread_mutex_lock(¶ms->sesscache->mutex);      freebios(params->sesscache->rbios);      params->sesscache->rbios = NULL; @@ -365,8 +365,10 @@ void *tlsservernew(void *arg) {  	X509_free(cert);   exit: -    SSL_shutdown(ssl); -    SSL_free(ssl); +    if (ssl) { +	SSL_shutdown(ssl); +	SSL_free(ssl); +    }      ERR_remove_state(0);      shutdown(s, SHUT_RDWR);      close(s); | 
