| commit | 953b08b7c01f7de587fb1d9a795b237d6caa5710 | [log] [tgz] |
|---|---|---|
| author | Android Build Merger (Role) <noreply-android-build-merger@google.com> | Mon Apr 16 18:57:36 2018 +0000 |
| committer | Android Build Merger (Role) <noreply-android-build-merger@google.com> | Mon Apr 16 18:57:36 2018 +0000 |
| tree | 9ff517b8110117064e39899d9358dc349d6d841a | |
| parent | f4dc4cd4a30395abada70bf1c1d236f62d88cd91 [diff] | |
| parent | 325909a4e47eff6ea2637d77cb04f16c71f78cce [diff] |
[automerger] Don't pad before calling writeInPlace(). am: 732132b765 am: a6a5c3fa47 am: 325909a4e4 Change-Id: Ibf77228b5793e53cdf5a2d2e2953425b7b3fb614
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index ef72b3e..6814e6b 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp
@@ -1020,7 +1020,7 @@ if (err) return err; // payload - void* const buf = this->writeInplace(pad_size(len)); + void* const buf = this->writeInplace(len); if (buf == NULL) return BAD_VALUE;