Fix mips build for libbinder.

Mips specific code was using an uninitialized variable.

Change-Id: I445043c76ebfa420b26376ade60f8068b4ea0b11
This commit is contained in:
Narayan Kamath 2014-06-04 15:04:29 +01:00
parent edcf7f4d3a
commit 2c68d380c9
1 changed files with 1 additions and 0 deletions

View File

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