Skip to content

Commit

Permalink
Merge bitcoin#765: remove dead store in ecdsa_signature_parse_der_lax
Browse files Browse the repository at this point in the history
f00d657 remove dead store in ecdsa_signature_parse_der_lax (fanquake)

Pull request description:

ACKs for top commit:
  elichai:
    utACK f00d657, it does look like we don't use that assignment
  jonasnick:
    ACK f00d657

Tree-SHA512: 9aa54c901f299341c309411b0247720f5152a131dd346c19be7ee21865e3a822e8cf91b869e28ef6288adaf31660bc2e18874e304052468a9be6b7027674af30
  • Loading branch information
jonasnick committed Jun 29, 2020
2 parents dbd41db + f00d657 commit 3f4a5a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contrib/lax_der_parsing.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ int ecdsa_signature_parse_der_lax(const secp256k1_context* ctx, secp256k1_ecdsa_
return 0;
}
spos = pos;
pos += slen;

/* Ignore leading zeroes in R */
while (rlen > 0 && input[rpos] == 0) {
Expand Down

0 comments on commit 3f4a5a1

Please sign in to comment.