ssld: avoid clang static analysis warning
This commit is contained in:
parent
8fc0cea653
commit
a21843a0a0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue