am be451b57: Merge "Fix the arguments to memcpy." into mnc-dev

* commit 'be451b57b97c21747c637f4af06743318d42c36c':
  Fix the arguments to memcpy.
This commit is contained in:
Aravind Akella 2015-05-09 00:41:56 +00:00 committed by Android Git Automerger
commit adc3b4cd8f
1 changed files with 1 additions and 1 deletions

View File

@ -1709,7 +1709,7 @@ int SensorService::SensorEventConnection::handleEvent(int fd, int events, void*
#endif
} else if (numBytesRead == sizeof(uint32_t)) {
uint32_t numAcks = 0;
memcpy(&numAcks, buf, sizeof(numBytesRead));
memcpy(&numAcks, buf, numBytesRead);
// Sanity check to ensure there are no read errors in recv, numAcks is always
// within the range and not zero. If any of the above don't hold reset
// mWakeLockRefCount to zero.