commit | 46ee93fea82fd4630a3f89cc5a95859aee3aed3e | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Apr 24 03:39:31 2015 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Fri Apr 24 03:39:31 2015 +0000 |
tree | a99c3c230f9ab2cc6f4009753e0c2520c564af9e | |
parent | d33d7622c443e4a3dbb0ac7868402ec25562aa06 [diff] | |
parent | 90d0da48dfab9a712ab93c5433a16cdab05bfc82 [diff] |
am 28693983: am 1a39a994: Merge "Correct magic number on umount2" * commit '28693983510b140240e7b3e83c082e516b83896f': Correct magic number on umount2
diff --git a/sdcard/sdcard.c b/sdcard/sdcard.c index 041c37a..893c0dc 100644 --- a/sdcard/sdcard.c +++ b/sdcard/sdcard.c
@@ -1875,7 +1875,7 @@ 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){