Skip to content
Snippets Groups Projects
Commit 57c61f39 authored by teor's avatar teor
Browse files

Always use the sandbox in tor_open_cloexec

Use the sandbox in tor_open_cloexec, whether or not O_CLOEXEC is defined.
Patch by "teor". Fix on 0.2.3.1-alpha.
parent 19440b9e
No related branches found
No related tags found
No related merge requests found
o Minor fixes (sandbox, files):
- Use the sandbox in tor_open_cloexec whether or not O_CLOEXEC is defined.
Patch by "teor". Fix on 0.2.3.1-alpha.
......@@ -150,9 +150,8 @@ int
tor_open_cloexec(const char *path, int flags, unsigned mode)
{
int fd;
const char *p = path;
const char *p = sandbox_intern_string(path);
#ifdef O_CLOEXEC
p = sandbox_intern_string(path);
fd = open(p, flags|O_CLOEXEC, mode);
if (fd >= 0)
return fd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment