remove dead store in ecdsa_signature_parse_der_lax
This change was made in bitcoin/bitcoin without upstreaming. So this is a followup to the comment here: https://github.com/bitcoin/bitcoin/pull/19228#issuecomment-641795558. See also: https://github.com/bitcoin/bitcoin/pull/11073.
This commit is contained in:
parent
dbd41db16a
commit
f00d6575ca
@ -112,7 +112,6 @@ int ecdsa_signature_parse_der_lax(const secp256k1_context* ctx, secp256k1_ecdsa_
|
|||||||
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…
x
Reference in New Issue
Block a user