Fix mips build for libbinder.

Mips specific code was using an uninitialized variable.

(cherry picked from commit 2c68d380c9)

Change-Id: I6b562b3f6d2084b72e747736cbf43684c2049f8e
This commit is contained in:
Narayan Kamath 2014-06-04 15:04:29 +01:00
parent f1dd859baa
commit 2f1f742b90

View File

@ -1036,6 +1036,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;