Merge "Allow sandboxed apps to access only package specific dirs." into qt-dev am: 0a9469e923

am: a502c6aa58

Change-Id: Id979e86ae6e12fd4a661af10e0805d086a8a88ac
gugelfrei
Sudheer Shanka 5 years ago committed by android-build-merger
commit c49b29c7e5

@ -119,7 +119,8 @@ VolumeManager::VolumeManager() {
VolumeManager::~VolumeManager() {}
static bool hasIsolatedStorage() {
return GetBoolProperty(kIsolatedStorageSnapshot, GetBoolProperty(kIsolatedStorage, true));
return false &&
GetBoolProperty(kIsolatedStorageSnapshot, GetBoolProperty(kIsolatedStorage, true));
}
int VolumeManager::updateVirtualDisk() {
@ -1098,6 +1099,8 @@ int VolumeManager::remountUidLegacy(uid_t uid, int32_t mountMode) {
mode = "read";
break;
case VoldNativeService::REMOUNT_MODE_WRITE:
case VoldNativeService::REMOUNT_MODE_LEGACY:
case VoldNativeService::REMOUNT_MODE_INSTALLER:
mode = "write";
break;
default:

Loading…
Cancel
Save