summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-06-04 17:28:38 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-06-04 17:28:38 +0000
commitc2ac5897eccc681c8642095d4f8af13115de3ffb (patch)
tree03639ed07835c627c646a5fda0c85318689a7bed /libs
parentf0a2475905786d5457e7af838ac714acbfdafa4f (diff)
parent065e9c86e249beac08783c7e9334d5709e2c9080 (diff)
downloadframeworks_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.cpp1
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;