From 2629440d42e4d64cd0cb849c1b19fa87a4fcb90f Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 20 Dec 2016 19:21:00 +0100 Subject: [PATCH] Reformat M_check_autoarg to match our coding style Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2121) --- crypto/evp/pmeth_fn.c | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/crypto/evp/pmeth_fn.c b/crypto/evp/pmeth_fn.c index e9b20a6088..eb638019ce 100644 --- a/crypto/evp/pmeth_fn.c +++ b/crypto/evp/pmeth_fn.c @@ -15,25 +15,22 @@ #include "internal/evp_int.h" #define M_check_autoarg(ctx, arg, arglen, err) \ - if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) \ - { \ - size_t pksize = (size_t)EVP_PKEY_size(ctx->pkey); \ - if (pksize == 0) \ - { \ - EVPerr(err, EVP_R_INVALID_KEY); /*ckerr_ignore*/\ - return 0; \ - } \ - else if (!arg) \ - { \ - *arglen = pksize; \ - return 1; \ - } \ - else if (*arglen < pksize) \ - { \ - EVPerr(err, EVP_R_BUFFER_TOO_SMALL); /*ckerr_ignore*/\ - return 0; \ - } \ - } + if (ctx->pmeth->flags & EVP_PKEY_FLAG_AUTOARGLEN) { \ + size_t pksize = (size_t)EVP_PKEY_size(ctx->pkey); \ + \ + if (pksize == 0) { \ + EVPerr(err, EVP_R_INVALID_KEY); /*ckerr_ignore*/ \ + return 0; \ + } \ + if (!arg) { \ + *arglen = pksize; \ + return 1; \ + } \ + if (*arglen < pksize) { \ + EVPerr(err, EVP_R_BUFFER_TOO_SMALL); /*ckerr_ignore*/ \ + return 0; \ + } \ + } int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx) { -- 2.25.1