Commit 04f9095d authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix unitialized warnings

parent 0e039aa7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len,
	int str_type;
	int ret;
	char free_out;
	int outform, outlen;
	int outform, outlen = 0;
	ASN1_STRING *dest;
	unsigned char *p;
	int nchar;
+1 −1
Original line number Diff line number Diff line
@@ -534,7 +534,7 @@ int dtls1_get_record(SSL *s)
	int i,n;
	SSL3_RECORD *rr;
	SSL_SESSION *sess;
	unsigned char *p;
	unsigned char *p = NULL;
	unsigned short version;
	DTLS1_BITMAP *bitmap;
	unsigned int is_next_epoch;