Typo fix in comment. O_CLOEXEC is e, not x.
Test: None Bug: None Change-Id: I061fe1d3cac6307d878155f1fabdba70da8e9fd5
This commit is contained in:
parent
e65558a0a4
commit
ba1151c761
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ FILE* fdopen(int fd, const char* mode) {
|
|||
if (fcntl(fd, F_SETFL, fd_flags | O_APPEND) == -1) return nullptr;
|
||||
}
|
||||
|
||||
// Make sure O_CLOEXEC is set on the underlying fd if our mode has 'x'.
|
||||
// Make sure O_CLOEXEC is set on the underlying fd if our mode has 'e'.
|
||||
if ((mode_flags & O_CLOEXEC) && !((tmp = fcntl(fd, F_GETFD)) & FD_CLOEXEC)) {
|
||||
fcntl(fd, F_SETFD, tmp | FD_CLOEXEC);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue