summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author The Android Automerger <android-build@android.com> 2011-11-02 10:18:09 -0700
committer The Android Automerger <android-build@android.com> 2011-11-02 10:18:09 -0700
commitbeb470af433368bb423c0efd57de77c0a933e7bd (patch)
tree21488e100d4a724aa8b708d8a6718bf5eeba407a
parent8e31988d264785f05b97606a09d2d65de0d59904 (diff)
Revert "Merge "BatteryService(jni): properly handle read's return value" into ics-mr0"
This reverts commit f0ad147fc33cf55cd9427010b2cdb3eb89b9eec3, reversing changes made to bd9b1528051a1b257768fdbc5077a2d4473b02dd.
-rw-r--r--services/jni/com_android_server_BatteryService.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/services/jni/com_android_server_BatteryService.cpp b/services/jni/com_android_server_BatteryService.cpp
index 2ceb5356e624..b9f2c1f182d1 100644
--- a/services/jni/com_android_server_BatteryService.cpp
+++ b/services/jni/com_android_server_BatteryService.cpp
@@ -141,10 +141,10 @@ static int readFromFile(const char* path, char* buf, size_t size)
return -1;
}
- ssize_t count = read(fd, buf, size);
+ size_t count = read(fd, buf, size);
if (count > 0) {
- while (count > 0 && buf[count-1] == '\n')
- count--;
+ count = (count < size) ? count : size - 1;
+ while (count > 0 && buf[count-1] == '\n') count--;
buf[count] = '\0';
} else {
buf[0] = '\0';