[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;