提交 04f9095d 编写于 作者: D Dr. Stephen Henson

Fix unitialized warnings

上级 0e039aa7
...@@ -93,7 +93,7 @@ int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, ...@@ -93,7 +93,7 @@ int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
int str_type; int str_type;
int ret; int ret;
char free_out; char free_out;
int outform, outlen; int outform, outlen = 0;
ASN1_STRING *dest; ASN1_STRING *dest;
unsigned char *p; unsigned char *p;
int nchar; int nchar;
......
...@@ -534,7 +534,7 @@ int dtls1_get_record(SSL *s) ...@@ -534,7 +534,7 @@ int dtls1_get_record(SSL *s)
int i,n; int i,n;
SSL3_RECORD *rr; SSL3_RECORD *rr;
SSL_SESSION *sess; SSL_SESSION *sess;
unsigned char *p; unsigned char *p = NULL;
unsigned short version; unsigned short version;
DTLS1_BITMAP *bitmap; DTLS1_BITMAP *bitmap;
unsigned int is_next_epoch; unsigned int is_next_epoch;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册