summaryrefslogtreecommitdiffstats
path: root/ssl/d1_pkt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-10-04 16:52:51 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-10-04 16:52:51 +0000
commit04f9095d9eca142c4d7919ff0954a7352bfcf9bc (patch)
tree63f9789a32134e510e0ca9aa3d39826115cd53aa /ssl/d1_pkt.c
parent0e039aa7976eb2278339441125473d7219bee413 (diff)
Fix unitialized warnings
Diffstat (limited to 'ssl/d1_pkt.c')
-rw-r--r--ssl/d1_pkt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index 3ee46c4721..c9757e1d63 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -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;