summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiod <>2015-10-25 11:59:37 +0000
committermiod <>2015-10-25 11:59:37 +0000
commit59b932da6856ee05440859a59053b777945624df (patch)
tree11b761ddc0311205cf01c9ada93f18fb6d6c1d12
parent095da41d5c40b18f47f3a1a5d002f58a5d4848de (diff)
downloadopenbsd-59b932da6856ee05440859a59053b777945624df.tar.gz
openbsd-59b932da6856ee05440859a59053b777945624df.tar.bz2
openbsd-59b932da6856ee05440859a59053b777945624df.zip
Missing initializer; spotted by coverity.
-rw-r--r--src/regress/lib/libcrypto/asn1/asn1time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/asn1/asn1time.c b/src/regress/lib/libcrypto/asn1/asn1time.c
index 4db0f12769..7ed7197ee5 100644
--- a/src/regress/lib/libcrypto/asn1/asn1time.c
+++ b/src/regress/lib/libcrypto/asn1/asn1time.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1time.c,v 1.6 2015/10/22 14:10:55 jsing Exp $ */ 1/* $OpenBSD: asn1time.c,v 1.7 2015/10/25 11:59:37 miod Exp $ */
2/* 2/*
3 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -295,7 +295,7 @@ asn1_utctime_test(int test_no, struct asn1_time_test *att)
295{ 295{
296 const unsigned char *der; 296 const unsigned char *der;
297 unsigned char *p = NULL; 297 unsigned char *p = NULL;
298 ASN1_UTCTIME *ut; 298 ASN1_UTCTIME *ut = NULL;
299 int failure = 1; 299 int failure = 1;
300 int len; 300 int len;
301 301