commit | 2c68d380c9ef765a7d46e5a4735f39e6c27849f2 | [log] [tgz] |
---|---|---|
author | Narayan Kamath <narayan@google.com> | Wed Jun 04 15:04:29 2014 +0100 |
committer | Narayan Kamath <narayan@google.com> | Wed Jun 04 15:05:13 2014 +0100 |
tree | efa3691e4a5c64584e8f7283ea714282a9262352 | |
parent | edcf7f4d3ac452500d68e254d367f559d538695d [diff] |
Fix mips build for libbinder. Mips specific code was using an uninitialized variable. Change-Id: I445043c76ebfa420b26376ade60f8068b4ea0b11
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 52fff82..66823de 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp
@@ -1062,6 +1062,7 @@ double d; unsigned long long ll; } u; + u.d = 0; status_t status; status = readAligned(&u.ll); *pArg = u.d;