diff options
Diffstat (limited to '')
-rw-r--r-- | asn1_decoder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1_decoder.cpp b/asn1_decoder.cpp index a9dfccc58..285214f16 100644 --- a/asn1_decoder.cpp +++ b/asn1_decoder.cpp @@ -19,14 +19,14 @@ #include <stdint.h> int asn1_context::peek_byte() const { - if (length_ <= 0) { + if (length_ == 0) { return -1; } return *p_; } int asn1_context::get_byte() { - if (length_ <= 0) { + if (length_ == 0) { return -1; } |