commit | 957f6491f82736f7b5197933f0c63b35474f5f12 | [log] [tgz] |
---|---|---|
author | Tao Bao <tbao@google.com> | Thu Mar 23 19:59:32 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Thu Mar 23 19:59:32 2017 +0000 |
tree | 478544d5ed51ed57b097faed5f6c5c8f870cea00 | |
parent | d414ae465e3815c1b6135b9b788da68f1336f33c [diff] | |
parent | 0d264bf088960285bc9f4e31250a9a3bfe8e03bf [diff] |
Merge "Checking unsigned variable less than zero" am: 0d264bf088 Change-Id: I3a5013ec09e81ce1daae78a91975884a1f8d7a81
diff --git a/asn1_decoder.cpp b/asn1_decoder.cpp index a9dfccc..285214f 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; }