commit | d91ac98a8ead216b12af6df61d90229b74c7f0f6 | [log] [tgz] |
---|---|---|
author | Mathias Agopian <mathias@google.com> | Mon Jun 21 15:19:26 2010 -0700 |
committer | Mathias Agopian <mathias@google.com> | Mon Jun 21 15:19:26 2010 -0700 |
tree | 6d30e2403c332266e81949da0e7b780a054e5a10 | |
parent | 28333315c6f62b303de2ec0ac9e48158ed419f06 [diff] [blame] |
fix [2785833] valgrind error in android::Layer::requestBuffer fix uninitialized variable Change-Id: I99e1b619ae8c88dd9d77b3abf4762f801019047e
diff --git a/libs/surfaceflinger/Layer.cpp b/libs/surfaceflinger/Layer.cpp index bfd6dcc..e606f71 100644 --- a/libs/surfaceflinger/Layer.cpp +++ b/libs/surfaceflinger/Layer.cpp
@@ -160,6 +160,7 @@ const uint32_t hwFlags = hw.getFlags(); mFormat = format; + mReqFormat = format; mWidth = w; mHeight = h; mSecure = (flags & ISurfaceComposer::eSecure) ? true : false;