diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-07 06:14:18 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-07 06:14:18 +0200 |
commit | cd96ca11cd5beefb13820ab076439d2051ffe1fb (patch) | |
tree | febbb5efebe3867d24fe06899c7e51a0dbd7c6bf /dom | |
parent | 01e813736810d4afade739af76893f2d9ff1f93a (diff) | |
download | uxp-cd96ca11cd5beefb13820ab076439d2051ffe1fb.tar.gz |
Fix build bustage.
Follow-up to f35bf8b65d25f88c7e34263337b05619a78868f6
Diffstat (limited to 'dom')
-rw-r--r-- | dom/ipc/ContentParent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/ipc/ContentParent.cpp b/dom/ipc/ContentParent.cpp index fb97adc42b..0a07147bf0 100644 --- a/dom/ipc/ContentParent.cpp +++ b/dom/ipc/ContentParent.cpp @@ -4725,7 +4725,7 @@ ContentParent::RecvGetFilesRequest(const nsID& aUUID, RefPtr<FileSystemSecurity> fss = FileSystemSecurity::Get(); if (NS_WARN_IF(!fss || !fss->ContentProcessHasAccessTo(ChildID(), aDirectoryPath))) { - return IPC_FAIL_NO_REASON(this); + return false; } } |