From: tb Date: Sun, 2 Jul 2023 04:17:00 +0000 (+0000) Subject: ECDSA_size(): move order a few lines down X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=db62e58c8433a3f1877367c36040ace0ab195807;p=openbsd ECDSA_size(): move order a few lines down --- diff --git a/lib/libcrypto/ecdsa/ecs_ossl.c b/lib/libcrypto/ecdsa/ecs_ossl.c index 8614bf19680..7c65fa79eb9 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.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;