summaryrefslogtreecommitdiffstats
path: root/ssl/d1_pkt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-10-04 16:52:35 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-10-04 16:52:35 +0000
commitad187f89053549cf3fe481ded227e61984fb0b61 (patch)
tree021a045d2e4eaa9a6ddb50b956716e3362872f26 /ssl/d1_pkt.c
parent2280f82fc6718b8cc07775f7083c0dd663c3ff47 (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;