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

Commit 28693983 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am 1a39a994: Merge "Correct magic number on umount2"

* commit '1a39a994':
  Correct magic number on umount2
parents ef68fd3f 1a39a994
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1875,7 +1875,7 @@ static int run(const char* source_path, const char* dest_path, uid_t uid,
    struct fuse fuse;

    /* cleanup from previous instance, if necessary */
    umount2(dest_path, 2);
    umount2(dest_path, MNT_DETACH);

    fd = open("/dev/fuse", O_RDWR);
    if (fd < 0){