Merge "Fix mips build for libbinder."

This commit is contained in:
Narayan Kamath 2014-06-04 14:53:08 +00:00 committed by Gerrit Code Review
commit 065e9c86e2

View File

@ -1036,6 +1036,7 @@ status_t Parcel::readDouble(double *pArg) const
double d; double d;
unsigned long long ll; unsigned long long ll;
} u; } u;
u.d = 0;
status_t status; status_t status;
status = readAligned(&u.ll); status = readAligned(&u.ll);
*pArg = u.d; *pArg = u.d;