aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-12-27 18:22:59 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-12-27 18:22:59 +0000
commit44ca7f4423e989b8f57ecd3b52f50dc1e282125b (patch)
treea56dcf818d34e609f44ea702efee9bb03e885d61 /url.c
parent[w3m-dev 02770] form element outside <form>..</form> (diff)
downloadw3m-44ca7f4423e989b8f57ecd3b52f50dc1e282125b.tar.gz
w3m-44ca7f4423e989b8f57ecd3b52f50dc1e282125b.zip
[w3m-dev 02772]
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r--url.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/url.c b/url.c
index b56b23d..d055347 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.27 2001/12/27 02:32:08 ukai Exp $ */
+/* $Id: url.c,v 1.28 2001/12/27 18:22:59 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -275,7 +275,7 @@ init_PRNG()
static SSL *
openSSLHandle(int sock, char *hostname)
{
- SSL *handle;
+ SSL *handle = NULL;
Str emsg;
Str amsg = NULL;
char *ans;
@@ -456,6 +456,9 @@ openSSLHandle(int sock, char *hostname)
accept_this_site = Strnew_charp(hostname);
return handle;
eend:
+ close(sock);
+ if (handle)
+ SSL_free(handle);
accept_this_site = NULL;
emsg = Sprintf("SSL error: %s", ERR_error_string(ERR_get_error(), NULL));
disp_err_message(emsg->ptr, FALSE);