Fix braces in e_aes.c: aes_init_key
authorTodd Short <tshort@akamai.com>
Tue, 24 May 2016 13:03:25 +0000 (09:03 -0400)
committerRich Salz <rsalz@openssl.org>
Tue, 24 May 2016 14:51:14 +0000 (10:51 -0400)
commitc01a3c6df038d4cbec87ae658c25b3730c5af88c
treeaa80a099d615879c03f1cc1194cadb3f6b40c9f9
parente0a675e211302257256ed80ea1edeff329c9b9e9
Fix braces in e_aes.c: aes_init_key

This compiles correctly, but depending on what may be defined, it's
possible that this could fail compilation. The braces are mismatched,
and it's possible to end up with an else followed by another else.

This presumes the indentation is mostly correct and indicative of
intent. Found via static analysis.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1118)
crypto/evp/e_aes.c