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

Commit ba394579 authored by Bernie Innocenti's avatar Bernie Innocenti Committed by android-build-merger
Browse files

Merge "Disallow operator!() on unique_fd" am: 0a887aa1

am: c7303276

Change-Id: I6c3a19d5b9bd559d84e90aeaa7264a6c5c472e9d
parents 707d0b6d c7303276
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -105,6 +105,9 @@ class unique_fd_impl final {
  int get() const { return fd_; }
  operator int() const { return get(); }  // NOLINT

  // Catch bogus error checks (i.e.: "!fd" instead of "fd != -1").
  bool operator!() const = delete;

  int release() __attribute__((warn_unused_result)) {
    tag(fd_, this, nullptr);
    int ret = fd_;
+1 −1
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ Result<Success> Service::SetUpPidNamespace() const {
Result<Success> Service::EnterNamespaces() const {
    for (const auto& [nstype, path] : namespaces_to_enter_) {
        auto fd = unique_fd{open(path.c_str(), O_RDONLY | O_CLOEXEC)};
        if (!fd) {
        if (fd == -1) {
            return ErrnoError() << "Could not open namespace at " << path;
        }
        if (setns(fd, nstype) == -1) {