[automerger] Don't pad before calling writeInPlace(). am: 732132b765 am: a6a5c3fa47

Change-Id: I729908048f3ba8fea012dda2888bf8f42b6dada8
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;