Allow non-existing fstab.postinstall am: 93cde30635 am: 60a481cbb7

Change-Id: I789b31763e62da8e2a6fc3dd538ff52b5a3e6350
diff --git a/dynamic_partition_control_android.cc b/dynamic_partition_control_android.cc
index 20e02ac..7486d09 100644
--- a/dynamic_partition_control_android.cc
+++ b/dynamic_partition_control_android.cc
@@ -556,7 +556,10 @@
     const std::string& path) {
   Fstab fstab;
   if (!ReadFstabFromFile(path, &fstab)) {
-    LOG(WARNING) << "Cannot read fstab from " << path;
+    PLOG(WARNING) << "Cannot read fstab from " << path;
+    if (errno == ENOENT) {
+      return false;
+    }
     return std::nullopt;
   }
   for (const auto& entry : fstab) {