List variables in a somewhat more sensible order
authortb <tb@openbsd.org>
Mon, 3 Jul 2023 10:10:58 +0000 (10:10 +0000)
committertb <tb@openbsd.org>
Mon, 3 Jul 2023 10:10:58 +0000 (10:10 +0000)
lib/libcrypto/ecdsa/ecs_ossl.c

index 33e41b4..0df5b2a 100644 (file)
@@ -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) {