commit | 357c2ed35dce4aeefb3bfbd36d312a6c7fbc9af6 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Fri Sep 13 16:31:26 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Sep 13 16:31:26 2024 +0000 |
tree | bdc8a74fa97aa4afe0ba182ae306d2d4e057ff7c | |
parent | 5dd9afa2fb8c3b1ca6347bff3bd38fc05fb969f5 [diff] | |
parent | ddaccb769dfe36586c621780b29d054d2c556dc6 [diff] |
Merge "Make invalid FD a fatal error in FdTrigger" into main
diff --git a/libs/binder/FdTrigger.cpp b/libs/binder/FdTrigger.cpp index f0aa801..7263e23 100644 --- a/libs/binder/FdTrigger.cpp +++ b/libs/binder/FdTrigger.cpp
@@ -108,7 +108,7 @@ // POLLNVAL: invalid FD number, e.g. not opened. if (pfd[0].revents & POLLNVAL) { - ALOGE("Invalid FD number (%d) in FdTrigger (POLLNVAL)", pfd[0].fd); + LOG_ALWAYS_FATAL("Invalid FD number (%d) in FdTrigger (POLLNVAL)", pfd[0].fd); return BAD_VALUE; }