From: Viktor Dukhovni Date: Sat, 19 Sep 2015 01:15:42 +0000 (-0400) Subject: Fix indentation X-Git-Tag: OpenSSL_1_1_0-pre1~600 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fe1cbdff89768c5d1983988ce1022674a438bbb;p=openssl Fix indentation Reviewed-by: Richard Levitte --- diff --git a/crypto/evp/encode.c b/crypto/evp/encode.c index 36affe5626..ccfd84b7a8 100644 --- a/crypto/evp/encode.c +++ b/crypto/evp/encode.c @@ -344,13 +344,13 @@ int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, tail: if (n > 0) { if ((n & 3) == 0) { - decoded_len = EVP_DecodeBlock(out, d, n); - n = 0; - if (decoded_len < 0 || eof > decoded_len) { - rv = -1; - goto end; - } - ret += (decoded_len - eof); + decoded_len = EVP_DecodeBlock(out, d, n); + n = 0; + if (decoded_len < 0 || eof > decoded_len) { + rv = -1; + goto end; + } + ret += (decoded_len - eof); } else if (seof) { /* EOF in the middle of a base64 block. */ rv = -1;