Fix a bogus clang warning
Clang with --strict-warnings was complaining about an uninitalised variable. In reality it will never be used uninitialised but clang can't figure out the logic, so just init it anyway to silence the warning. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
c9de4a20fa
commit
006207d1bc
1 changed files with 1 additions and 1 deletions
|
@ -522,7 +522,7 @@ static void init_read_state_machine(SSL *s)
|
|||
static SUB_STATE_RETURN read_state_machine(SSL *s) {
|
||||
OSSL_STATEM *st = &s->statem;
|
||||
int ret, mt;
|
||||
unsigned long len;
|
||||
unsigned long len = 0;
|
||||
int (*transition)(SSL *s, int mt);
|
||||
PACKET pkt;
|
||||
enum MSG_PROCESS_RETURN (*process_message)(SSL *s, PACKET *pkt);
|
||||
|
|
Loading…
Reference in a new issue