We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b9325c commit 9b65c2aCopy full SHA for 9b65c2a
Asn1Parser/Asn1Reader.cs
@@ -173,7 +173,7 @@ void parseNestedType() {
173
// -- if bit 5 is set to "0", attempt to resolve nested types only for UNIVERSAL tags.
174
// -- if the value is implicitly tagged, it cannot contain nested types.
175
// -- some universal types cannot include nested types: skip them in advance.
176
- if (_excludedTags.Contains(Tag) || PayloadLength < 2 || Tag > 127 & Tag < 160) {
+ if (_excludedTags.Contains(Tag) || PayloadLength < 2 || (Tag > 127 & Tag < 160)) {
177
return;
178
}
179
Int64 start = PayloadStartOffset;
0 commit comments