Merge "Fix build breakage due to extraneous dereference"
am: a763da3f1f
* commit 'a763da3f1fc010576b4807fa9b050c0720f81d00':
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();