Skip to content

Commit

Permalink
addressed bug: #43
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypt32 committed May 12, 2021
1 parent de3379f commit 27481f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public class OcspResponderRevocationConfiguration {
} catch {
return;
}
for (Int32 i = 0; i < props.GetUpperBound(0); i++) {
for (Int32 i = 0; i <= props.GetUpperBound(0); i++) {
switch (props[i, 0]) {
case MSFT_PROV_ERRORCODE:
RevocationStatusCode = (Int32)props[i, 1];
Expand Down

0 comments on commit 27481f2

Please sign in to comment.