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

Commit c5c03064 authored by forfun's avatar forfun Committed by Jin Qian
Browse files

modify a minor error in mount_with_alternatives


Test: when called with end_idx = null

Change-Id: I7e5d298f496847acb4aefbaad66cd98e907467bc
Signed-off-by: default avatarforfun <forfun414@gmail.com>
parent 3b261ace
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -464,7 +464,7 @@ static int mount_with_alternatives(struct fstab *fstab, int start_idx, int *end_
    if (!end_idx || !attempted_idx || start_idx >= fstab->num_entries) {
      errno = EINVAL;
      if (end_idx) *end_idx = start_idx;
      if (attempted_idx) *end_idx = start_idx;
      if (attempted_idx) *attempted_idx = start_idx;
      return -1;
    }