diff options
| author | Nick Kralevich <nnk@google.com> | 2015-01-31 22:16:14 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-01-31 22:16:14 +0000 |
| commit | 6c08cd6aa7aee66b973ee4861237ad36560e0239 (patch) | |
| tree | f9cbb3ae0ce8872d4982e145ac6abd646b3fa8fd /server/TetherController.cpp | |
| parent | aea68fddd979bf6852b8aef9bc718567f9da935a (diff) | |
| parent | 53ea9cadf6cc5f8be1c16b5b6b660cd7366fd3f0 (diff) | |
Merge "Avoid leaking file descriptors"
Diffstat (limited to 'server/TetherController.cpp')
| -rw-r--r-- | server/TetherController.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/TetherController.cpp b/server/TetherController.cpp index 4e1c52f4..a91c7444 100644 --- a/server/TetherController.cpp +++ b/server/TetherController.cpp @@ -66,7 +66,7 @@ int TetherController::setIpFwdEnabled(bool enable) { return 0; } - int fd = open("/proc/sys/net/ipv4/ip_forward", O_WRONLY); + int fd = open("/proc/sys/net/ipv4/ip_forward", O_WRONLY | O_CLOEXEC); if (fd < 0) { ALOGE("Failed to open ip_forward (%s)", strerror(errno)); return -1; @@ -82,7 +82,7 @@ int TetherController::setIpFwdEnabled(bool enable) { } bool TetherController::getIpFwdEnabled() { - int fd = open("/proc/sys/net/ipv4/ip_forward", O_RDONLY); + int fd = open("/proc/sys/net/ipv4/ip_forward", O_RDONLY | O_CLOEXEC); if (fd < 0) { ALOGE("Failed to open ip_forward (%s)", strerror(errno)); |
