Merge "Fix build breakage due to extraneous dereference" am: a763da3f1f
am: 3a5841286c

* commit '3a5841286c49d8944cee9e621fc971948c3f2cf3':
  Fix build breakage due to extraneous dereference
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index dd3f068..70e41e3 100644
--- a/libs/binder/Parcel.cpp
+++ b/libs/binder/Parcel.cpp
@@ -1758,7 +1758,7 @@
     size_t len;
     const char16_t* str = readString16Inplace(&len);
     if (str) {
-        *pArg->setTo(str, len);
+        pArg->setTo(str, len);
         return 0;
     } else {
         *pArg = String16();