Merge "uncrypt: write permission for f2fs_pin_file" am: d65cde7c5a am: 04630e738e
am: a199701606

Change-Id: Iea1b236f37d204af8e40eed1750f823e724cfe9d
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index cf068ba..d1970e5 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -300,7 +300,7 @@
     int head_block = 0;
     int head = 0, tail = 0;
 
-    android::base::unique_fd fd(open(path, O_RDONLY));
+    android::base::unique_fd fd(open(path, O_RDWR));
     if (fd == -1) {
         PLOG(ERROR) << "failed to open " << path << " for reading";
         return kUncryptFileOpenError;