From 2c68d380c9ef765a7d46e5a4735f39e6c27849f2 Mon Sep 17 00:00:00 2001 From: Narayan Kamath Date: Wed, 4 Jun 2014 15:04:29 +0100 Subject: [PATCH] Fix mips build for libbinder. Mips specific code was using an uninitialized variable. Change-Id: I445043c76ebfa420b26376ade60f8068b4ea0b11 --- libs/binder/Parcel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 52fff8253..66823decd 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -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;