mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Fix (incorrect) uninitialised variable warning.
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
14e8e4d3e6
commit
4eacfadedc
@ -1762,7 +1762,8 @@ int BIO_dgram_sctp_notification_cb(BIO *b,
|
||||
int BIO_dgram_sctp_wait_for_dry(BIO *b)
|
||||
{
|
||||
int is_dry = 0;
|
||||
int n, sockflags, ret;
|
||||
int sockflags = 0;
|
||||
int n, ret;
|
||||
union sctp_notification snp;
|
||||
struct msghdr msg;
|
||||
struct iovec iov;
|
||||
|
Loading…
Reference in New Issue
Block a user