commit | f955be995d9aa5eb2c4b86246b2f85797e21e003 | [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 | 4b0b88edb20c7f440d693849507b3b1a775d125a | |
parent | b16fa651ddbd6189409aa053ff1ae73383ae5157 [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;