Loading asn1_decoder.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -19,14 +19,14 @@ #include <stdint.h> #include <stdint.h> int asn1_context::peek_byte() const { int asn1_context::peek_byte() const { if (length_ <= 0) { if (length_ == 0) { return -1; return -1; } } return *p_; return *p_; } } int asn1_context::get_byte() { int asn1_context::get_byte() { if (length_ <= 0) { if (length_ == 0) { return -1; return -1; } } Loading Loading
asn1_decoder.cpp +2 −2 Original line number Original line Diff line number Diff line Loading @@ -19,14 +19,14 @@ #include <stdint.h> #include <stdint.h> int asn1_context::peek_byte() const { int asn1_context::peek_byte() const { if (length_ <= 0) { if (length_ == 0) { return -1; return -1; } } return *p_; return *p_; } } int asn1_context::get_byte() { int asn1_context::get_byte() { if (length_ <= 0) { if (length_ == 0) { return -1; return -1; } } Loading