ssld: avoid clang static analysis warning

This commit is contained in:
Simon Arlott 2017-07-29 19:45:07 +01:00
parent 0ded533dbc
commit f660af2155
No known key found for this signature in database
GPG Key ID: C8975F2043CA5D24
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,6 @@ conn_mod_read_cb(rb_fde_t *fd, void *data)
{
char inbuf[READBUF_SIZE];
conn_t *conn = data;
const char *err = remote_closed;
int length;
if(conn == NULL)
return;
@ -584,6 +583,7 @@ conn_mod_read_cb(rb_fde_t *fd, void *data)
return;
}
const char *err;
if(IsSSL(conn) && length == RB_RW_SSL_ERROR)
err = rb_get_ssl_strerror(conn->mod_fd);
else