From 018fcbec38509cd03fb0709904a382c3bfcf5ed4 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Thu, 11 May 2017 16:21:37 +0200 Subject: Fix gcc-7 warnings. - Mostly missing fall thru comments - And uninitialized value used in sslapitest.c Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/3440) --- crypto/pkcs7/pk7_asn1.c | 1 + 1 file changed, 1 insertion(+) (limited to 'crypto/pkcs7') diff --git a/crypto/pkcs7/pk7_asn1.c b/crypto/pkcs7/pk7_asn1.c index 315e1b8132..cd9fb4f509 100644 --- a/crypto/pkcs7/pk7_asn1.c +++ b/crypto/pkcs7/pk7_asn1.c @@ -40,6 +40,7 @@ static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, case ASN1_OP_STREAM_PRE: if (PKCS7_stream(&sarg->boundary, *pp7) <= 0) return 0; + /* fall thru */ case ASN1_OP_DETACHED_PRE: sarg->ndef_bio = PKCS7_dataInit(*pp7, sarg->out); if (!sarg->ndef_bio) -- cgit v1.2.3