aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mount.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-11-03 09:54:53 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-11-03 09:54:53 +0100
commitf85554c26525ec2ddc860ccb1aadc05e7a3825f6 (patch)
treec4b5daf2c2c084b05d6bc49305c56a45a2dea4c0 /util-linux/mount.c
parent3b1603410a29046e5dcabe1bdfc2dc109461111d (diff)
downloadbusybox-f85554c26525ec2ddc860ccb1aadc05e7a3825f6.tar.gz
mount: free commented /etc/filesystems lines when we read it
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r--util-linux/mount.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 56276ef01..fddd7fba9 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -522,12 +522,13 @@ static llist_t *get_block_backed_filesystems(void)
while ((buf = xmalloc_fgetline(f)) != NULL) {
if (strncmp(buf, "nodev", 5) == 0 && isspace(buf[5]))
- continue;
+ goto next;
fs = skip_whitespace(buf);
if (*fs == '#' || *fs == '*' || !*fs)
- continue;
+ goto next;
llist_add_to_end(&list, xstrdup(fs));
+ next:
free(buf);
}
if (ENABLE_FEATURE_CLEAN_UP) fclose(f);