diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-07-12 05:30:13 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-07-12 05:30:13 +0200 |
commit | d5a153bbe3134a37dc4bcee0ab9a10c4b59f8d2e (patch) | |
tree | 3c6844ec247f849111af80dac1bea5959f361e10 /kike.c | |
parent | 4ead42f4e351a637e0ffb64a56075d6c5fadeea2 (diff) | |
download | xK-d5a153bbe3134a37dc4bcee0ab9a10c4b59f8d2e.tar.gz xK-d5a153bbe3134a37dc4bcee0ab9a10c4b59f8d2e.tar.xz xK-d5a153bbe3134a37dc4bcee0ab9a10c4b59f8d2e.zip |
Call ERR_clear_error() where necessary
Diffstat (limited to 'kike.c')
-rw-r--r-- | kike.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3113,6 +3113,7 @@ irc_try_read_ssl (struct client *c) while (true) { str_ensure_space (buf, 512); + ERR_clear_error (); int n_read = SSL_read (c->ssl, buf->str + buf->len, buf->alloc - buf->len - 1 /* null byte */); @@ -3179,6 +3180,7 @@ irc_try_write_ssl (struct client *c) c->ssl_tx_want_rx = false; while (buf->len) { + ERR_clear_error (); int n_written = SSL_write (c->ssl, buf->str, buf->len); const char *error_info = NULL; |