mirror of
https://git.freebsd.org/ports.git
synced 2025-07-05 03:19:18 -04:00
On the port side, this update brings: - libvulkan enabled by default - more unit tests enabled - no longer dependent on Python 2.7 Security: https://vuxml.freebsd.org/freebsd/e0914087-9a09-11ec-9e61-3065ec8fd3ec.html
11 lines
624 B
C++
11 lines
624 B
C++
--- base/files/scoped_file.cc.orig 2022-02-28 16:54:41 UTC
|
|
+++ base/files/scoped_file.cc
|
|
@@ -31,7 +31,7 @@ void ScopedFDCloseTraits::Free(int fd) {
|
|
int ret = IGNORE_EINTR(close(fd));
|
|
|
|
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_APPLE) || \
|
|
- BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_ANDROID)
|
|
+ BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_BSD)
|
|
// NB: Some file descriptors can return errors from close() e.g. network
|
|
// filesystems such as NFS and Linux input devices. On Linux, macOS, and
|
|
// Fuchsia's POSIX layer, errors from close other than EBADF do not indicate
|