summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorChristopher Tate <ctate@google.com>2015-07-02 01:28:56 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-07-02 01:28:56 +0000
commiteba7afcc14f55e7fd32db9254f2b186108e1c776 (patch)
treedee03577fe47dd8f6e426108bb2e23a505afeda6 /libs
parent8728c390476110857dd6b290dac3bfdf13b33e81 (diff)
parent2f340be345612d9fc2ecb1ea2a4c9e147610a593 (diff)
downloadframeworks_native-eba7afcc14f55e7fd32db9254f2b186108e1c776.zip
frameworks_native-eba7afcc14f55e7fd32db9254f2b186108e1c776.tar.gz
frameworks_native-eba7afcc14f55e7fd32db9254f2b186108e1c776.tar.bz2
am 2f340be3: Disregard alleged binder entities beyond parcel bounds
* commit '2f340be345612d9fc2ecb1ea2a4c9e147610a593': Disregard alleged binder entities beyond parcel bounds
Diffstat (limited to 'libs')
-rw-r--r--libs/binder/Parcel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index 99c934c..87ce5d0 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -411,7 +411,7 @@ status_t Parcel::appendFrom(const Parcel *parcel, size_t offset, size_t len)
// Count objects in range
for (int i = 0; i < (int) size; i++) {
size_t off = objects[i];
- if ((off >= offset) && (off < offset + len)) {
+ if ((off >= offset) && (off + sizeof(flat_binder_object) <= offset + len)) {
if (firstIndex == -1) {
firstIndex = i;
}