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

Change-Id: Iccca7f34e2f59bc0c1971978bf87a76d7c123d3f
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index 5c5b126..7a26776 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -1012,7 +1012,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;