There are several calls to update_mtab() which are not guarded by
mtab_is_writable(). Reported by: Daniel Jacobowitz <dan@debian.org>
See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338803
Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
remnt.mnt_type = remnt.mnt_fsname = NULL;
remnt.mnt_dir = xstrdup(node);
remnt.mnt_opts = xstrdup("ro");
- if (!nomtab)
+ if (!nomtab && mtab_is_writable())
update_mtab(node, &remnt);
return 0;
} else if (errno != EBUSY) { /* hmm ... */
del_loop(loopdev);
writemtab:
- if (!nomtab &&
+ if (!nomtab && mtab_is_writable() &&
(umnt_err == 0 || umnt_err == EINVAL || umnt_err == ENOENT)) {
update_mtab (node, NULL);
}