[tor-commits] [tor-browser/tor-browser-78.5.0esr-10.0-1] Bug 40193: Add `AT_EMPTY_PATH` definition

gk at torproject.org gk at torproject.org
Thu Nov 12 19:36:42 UTC 2020


commit 39fc67903d6dd185c9bda5f3a8285df40e888286
Author: Georg Koppen <gk at torproject.org>
Date:   Fri Oct 16 08:47:05 2020 +0000

    Bug 40193: Add `AT_EMPTY_PATH` definition
    
    `AT_EMPTY_PATH` comes with glibc 2.14. However, Debian Wheezy, which we
    still use for building our stable Linux bundles, comes only with glibc
    2.13 resulting in an "undeclared-identifier"-error during build time.
    
    This problem got introduced by fixing
    https://bugzilla.mozilla.org/show_bug.cgi?id=1660901.
---
 security/sandbox/linux/SandboxFilter.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp
index 1253a5cc2dc1..326aa1c32c65 100644
--- a/security/sandbox/linux/SandboxFilter.cpp
+++ b/security/sandbox/linux/SandboxFilter.cpp
@@ -73,6 +73,10 @@ using namespace sandbox::bpf_dsl;
 // Not part of UAPI, but userspace sees it in F_GETFL; see bug 1650751.
 #define FMODE_NONOTIFY 0x4000000
 
+#ifndef AT_EMPTY_PATH
+#  define AT_EMPTY_PATH 0x100 /* Allow empty relative pathname */
+#endif
+
 #ifndef F_LINUX_SPECIFIC_BASE
 #  define F_LINUX_SPECIFIC_BASE 1024
 #else



More information about the tor-commits mailing list