diff options
author | Narayan Kamath <narayan@google.com> | 2014-06-04 17:28:38 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-06-04 17:28:38 +0000 |
commit | c2ac5897eccc681c8642095d4f8af13115de3ffb (patch) | |
tree | 03639ed07835c627c646a5fda0c85318689a7bed /libs | |
parent | f0a2475905786d5457e7af838ac714acbfdafa4f (diff) | |
parent | 065e9c86e249beac08783c7e9334d5709e2c9080 (diff) | |
download | frameworks_native-c2ac5897eccc681c8642095d4f8af13115de3ffb.zip frameworks_native-c2ac5897eccc681c8642095d4f8af13115de3ffb.tar.gz frameworks_native-c2ac5897eccc681c8642095d4f8af13115de3ffb.tar.bz2 |
am 065e9c86: Merge "Fix mips build for libbinder."
* commit '065e9c86e249beac08783c7e9334d5709e2c9080':
Fix mips build for libbinder.
Diffstat (limited to 'libs')
-rw-r--r-- | libs/binder/Parcel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 2e98eec..729cf21 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -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; |