mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
Remove dead store in ecdsa_signature_parse_der_lax.
This was one of the issues found by Clang's static analyzer (#9573).
This commit is contained in:
parent
22e301a3d5
commit
bfebc0b807
1 changed files with 0 additions and 1 deletions
|
@ -126,7 +126,6 @@ static int ecdsa_signature_parse_der_lax(const secp256k1_context* ctx, secp256k1
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
spos = pos;
|
spos = pos;
|
||||||
pos += slen;
|
|
||||||
|
|
||||||
/* Ignore leading zeroes in R */
|
/* Ignore leading zeroes in R */
|
||||||
while (rlen > 0 && input[rpos] == 0) {
|
while (rlen > 0 && input[rpos] == 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue