Merge "Don't pad before calling writeInPlace()." into pi-dev am: cfa4928af7
am: a85157fc6d

Change-Id: I284c3808fca21625c2441e299fb526cbe9ece8a4
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index 14cb7dd..cb542bf 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -1277,7 +1277,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;