Skip to content

Commit

Permalink
changed var type in for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
smittals2 committed Aug 20, 2024
1 parent 5aeadee commit fe740cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ocsp/ocsp_http.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ int OCSP_REQ_CTX_nbio(OCSP_REQ_CTX *rctx) {
}
data++;
rctx->asn1_len = 0;
for (int i = 0; i < (int)data_len; i++) {
for (size_t i = 0; i < data_len; i++) {
rctx->asn1_len <<= 8;
rctx->asn1_len |= *data++;
}
Expand Down

0 comments on commit fe740cf

Please sign in to comment.