提交 4fe1cbdf 编写于 作者: V Viktor Dukhovni

Fix indentation

Reviewed-by: NRichard Levitte <levitte@openssl.org>
上级 e008d1b2
...@@ -344,13 +344,13 @@ int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, ...@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册