diff options
author | Dave Reisner <d@falconindy.com> | 2012-02-17 12:17:49 -0500 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-03-06 02:16:41 +0100 |
commit | 85eda5721f8d2a20482ef228d341fbbd134c6799 (patch) | |
tree | 60f91d549d8b1e141d6e14a9361177edb3e82582 | |
parent | e2e9329411a3753421e97c084d0f177003b20970 (diff) |
mount: properly check return for mount_add_*
Previously, mount_load_etc_fstab() could never fail for reasons other
than a setmntent() or allocation failure.
-rw-r--r-- | src/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mount.c b/src/mount.c index f80fcf5f4a..982715a6db 100644 --- a/src/mount.c +++ b/src/mount.c @@ -1578,7 +1578,7 @@ static int mount_load_etc_fstab(Manager *m) { free(what); free(where); - if (r < 0) + if (k < 0) r = k; } |