From 7923245515147d0e5726638d3f61d1d443a3809d Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 3 Jul 2023 10:10:58 +0000 Subject: [PATCH] List variables in a somewhat more sensible order --- lib/libcrypto/ecdsa/ecs_ossl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libcrypto/ecdsa/ecs_ossl.c b/lib/libcrypto/ecdsa/ecs_ossl.c index 33e41b4c0f8..0df5b2af56a 100644 --- a/lib/libcrypto/ecdsa/ecs_ossl.c +++ b/lib/libcrypto/ecdsa/ecs_ossl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecs_ossl.c,v 1.53 2023/07/03 10:09:12 tb Exp $ */ +/* $OpenBSD: ecs_ossl.c,v 1.54 2023/07/03 10:10:58 tb Exp $ */ /* * Written by Nils Larsch for the OpenSSL project */ @@ -456,12 +456,12 @@ int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey) { - BN_CTX *ctx = NULL; - BIGNUM *u1, *u2, *m, *x; - EC_POINT *point = NULL; const EC_GROUP *group; const EC_POINT *pub_key; + EC_POINT *point = NULL; const BIGNUM *order; + BN_CTX *ctx = NULL; + BIGNUM *u1, *u2, *m, *x; int ret = -1; if (eckey == NULL || sig == NULL) { -- 2.20.1