diff options
author | 2011-12-01 22:06:32 -0800 | |
---|---|---|
committer | 2011-12-01 22:06:32 -0800 | |
commit | f1a4c48b886d53e2afceb0620215e3792af79fd5 (patch) | |
tree | dbac517b6ca9b151605af1f929da336b4aef9cba /libs/binder/IPCThreadState.cpp | |
parent | 6cfa9e6c507a721f647518569c89db9560056079 (diff) | |
parent | e21dabf654e3d90e50e95174d5e9670bc930c194 (diff) |
am e21dabf6: Merge "Initialize bwr.read_buffer in IPCThreadState::talkWithDriver." into ics-mr1
* commit 'e21dabf654e3d90e50e95174d5e9670bc930c194':
Initialize bwr.read_buffer in IPCThreadState::talkWithDriver.
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 5ccf87f2cbd3..5d34787d6cec 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -773,6 +773,7 @@ status_t IPCThreadState::talkWithDriver(bool doReceive) bwr.read_buffer = (long unsigned int)mIn.data(); } else { bwr.read_size = 0; + bwr.read_buffer = 0; } IF_LOG_COMMANDS() { |