Merge "Checking unsigned variable less than zero"
am: 0d264bf088
Change-Id: I3a5013ec09e81ce1daae78a91975884a1f8d7a81
This commit is contained in:
+2
-2
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user