From 53a224bb0ab6c7d0d509141638f7820b859d0ade Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Wed, 4 Jun 2014 08:33:06 +0200 Subject: [PATCH] evp/e_aes.c: add erroneously omitted break; --- crypto/evp/e_aes.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c index 7c69976d63..a0368d99a3 100644 --- a/crypto/evp/e_aes.c +++ b/crypto/evp/e_aes.c @@ -1322,6 +1322,7 @@ static int aes_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, #else gctx->ctr = NULL; #endif + break; } else #endif -- 2.25.1