From 2f1f742b903474b60ff58f74db5b9e81f2a9e1bf 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. (cherry picked from commit 2c68d380c9ef765a7d46e5a4735f39e6c27849f2) Change-Id: I6b562b3f6d2084b72e747736cbf43684c2049f8e --- libs/binder/Parcel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index db6369d27..fda2715dd 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;