Fix indentation

Reviewed-by: Richard Levitte <levitte@openssl.org>
(cherry picked from commit 4fe1cbdff89768c5d1983988ce1022674a438bbb)
This commit is contained in:
Viktor Dukhovni 2015-09-18 21:15:42 -04:00
parent 628c15039f
commit 2ab1e7fde3

View File

@ -344,13 +344,13 @@ int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
tail: tail:
if (n > 0) { if (n > 0) {
if ((n & 3) == 0) { if ((n & 3) == 0) {
decoded_len = EVP_DecodeBlock(out, d, n); decoded_len = EVP_DecodeBlock(out, d, n);
n = 0; n = 0;
if (decoded_len < 0 || eof > decoded_len) { if (decoded_len < 0 || eof > decoded_len) {
rv = -1; rv = -1;
goto end; goto end;
} }
ret += (decoded_len - eof); ret += (decoded_len - eof);
} else if (seof) { } else if (seof) {
/* EOF in the middle of a base64 block. */ /* EOF in the middle of a base64 block. */
rv = -1; rv = -1;