mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
SSL: Fix assertion failures when net_connect_ip() detects
an error, e.g. bad bind address, localhost connection refused. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4577 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
55c2d17c2b
commit
380d0d3d38
@ -312,6 +312,8 @@ GIOChannel *net_connect_ip_ssl(IPADDR *ip, int port, IPADDR *my_ip, const char *
|
||||
GIOChannel *handle, *ssl_handle;
|
||||
|
||||
handle = net_connect_ip(ip, port, my_ip);
|
||||
if (handle == NULL)
|
||||
return NULL;
|
||||
ssl_handle = irssi_ssl_get_iochannel(handle, cert, pkey, cafile, capath, verify);
|
||||
if (ssl_handle == NULL)
|
||||
g_io_channel_unref(handle);
|
||||
|
Loading…
Reference in New Issue
Block a user