Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8873268 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by android-build-merger
Browse files

Explicitly chmod() for compatibility. am: 46ed6f4b

am: 1dd0b14f

* commit '1dd0b14f':
  Explicitly chmod() for compatibility.
parents b81bed2b 1dd0b14f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -492,6 +492,7 @@ class ContextImpl extends Context {
        if (!file.exists()) {
            try {
                Os.mkdir(file.getAbsolutePath(), 0771);
                Os.chmod(file.getAbsolutePath(), 0771);
            } catch (ErrnoException e) {
                if (e.errno == OsConstants.EEXIST) {
                    // We must have raced with someone; that's okay