summaryrefslogtreecommitdiff
path: root/sutils
diff options
context:
space:
mode:
authorJustus Winter <justus@gnupg.org>2017-08-05 19:28:38 +0200
committerJustus Winter <justus@gnupg.org>2017-08-05 19:34:28 +0200
commit66553fd7a7bcf7c260b45f2e7ad54e98d33f8080 (patch)
tree154a543b44a17302b6618cb9c80d7e6b66703216 /sutils
parent835b293d35a209d38047126443d41fa7090daa4c (diff)
Simplify deallocations.
free (NULL) is a nop, therefore it is not necessary to check that first. Simplify the code accordingly. This commit is the result of the following semantic patch: @@ identifier X; @@ -if (X) free (X); +free (X); * console-client/console.c: Simplify accordingly. * console-client/driver.c: Likewise. * console-client/vga.c: Likewise. * ftpfs/dir.c: Likewise. * libftpconn/unix.c: Likewise. * libps/fmt.c: Likewise. * libps/proclist.c: Likewise. * libstore/mvol.c: Likewise. * nfs/ops.c: Likewise. * proc/host.c: Likewise. * sutils/fstab.c: Likewise.
Diffstat (limited to 'sutils')
-rw-r--r--sutils/fstab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sutils/fstab.c b/sutils/fstab.c
index 2e125d8d..9748ae9b 100644
--- a/sutils/fstab.c
+++ b/sutils/fstab.c
@@ -617,7 +617,7 @@ fstab_add_mntent (struct fstab *const fstab, const struct mntent *mntent,
{
if (! err)
_fstab_add (fstab, fs);
- else if (fs)
+ else
free (fs);
}