Merge "Checking unsigned variable less than zero"

This commit is contained in:
Tao Bao 2017-03-23 19:55:35 +00:00 committed by Gerrit Code Review
commit 0d264bf088

View file

@ -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;
}