mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 12:14:38 +02:00
fix variable shadow warning in asn.c
This commit is contained in:
@@ -4783,7 +4783,7 @@ static int MakeSignature(const byte* buffer, int sz, byte* sig, int sigSz,
|
|||||||
#ifdef HAVE_ECC
|
#ifdef HAVE_ECC
|
||||||
else if (eccKey) {
|
else if (eccKey) {
|
||||||
word32 outSz = sigSz;
|
word32 outSz = sigSz;
|
||||||
int ret = ecc_sign_hash(digest, digestSz, sig, &outSz, rng, eccKey);
|
ret = ecc_sign_hash(digest, digestSz, sig, &outSz, rng, eccKey);
|
||||||
|
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user