提交 4eacfade 编写于 作者: B Ben Laurie

Fix (incorrect) uninitialised variable warning.

Reviewed-by: NRichard Levitte <levitte@openssl.org>
上级 14e8e4d3
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册