commit | 58c21a6246efe7598ced3a78be9a6e71af5d076a | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Thu Apr 18 16:46:42 2019 -0700 |
committer | Josh Gao <jmgao@google.com> | Thu Apr 18 16:58:30 2019 -0700 |
tree | ac108140764b894ac24b6dceba42f7061fd6424f | |
parent | 69e3c31b7370748f3d5cc99549deaa901393b1ef [diff] |
adb: fix double close in wait-for-*. unique_fd's implicit conversion to int allows the following code to compile without error, leading to a double close: std::function<void(unique_fd)> func = [](int x) { close(x); }; func(unique_fd(42)); Test: treehugger Change-Id: I948ecda3a12738b3af6444fe2902d2f7b80e1b4c