Commit cc3af271 by Richard Kenner

(try): Insist that temp dir be searchable.

From-SVN: r13260
parent b2932ae5
......@@ -80,7 +80,7 @@ try (dir, base)
if (base != 0)
return base;
if (dir != 0
&& access (dir, R_OK | W_OK) == 0)
&& access (dir, R_OK | W_OK | X_OK) == 0)
return dir;
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment