ssld: avoid clang static analysis warning

This commit is contained in:
Simon Arlott 2017-07-29 19:45:07 +01:00 committed by Aaron Jones
parent 8fc0cea653
commit a21843a0a0
No known key found for this signature in database
GPG key ID: 8AF0737488AB3012

View file

@ -561,7 +561,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;
@ -591,6 +590,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