ECDSA_size(): move order a few lines down
authortb <tb@openbsd.org>
Sun, 2 Jul 2023 04:17:00 +0000 (04:17 +0000)
committertb <tb@openbsd.org>
Sun, 2 Jul 2023 04:17:00 +0000 (04:17 +0000)
lib/libcrypto/ecdsa/ecs_ossl.c

index 8614bf1..7c65fa7 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecs_ossl.c,v 1.38 2023/07/02 03:20:44 tb Exp $ */
+/* $OpenBSD: ecs_ossl.c,v 1.39 2023/07/02 04:17:00 tb Exp $ */
 /*
  * Written by Nils Larsch for the OpenSSL project
  */
@@ -588,8 +588,8 @@ ECDSA_verify(int type, const unsigned char *dgst, int dgst_len,
 int
 ECDSA_size(const EC_KEY *r)
 {
-       BIGNUM *order = NULL;
        const EC_GROUP *group;
+       BIGNUM *order = NULL;
        ECDSA_SIG signature;
        int ret = 0;