do not need non-NULL-check before free(p), other minor refactoring
authorderaadt <deraadt@openbsd.org>
Fri, 29 May 2015 15:57:36 +0000 (15:57 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 29 May 2015 15:57:36 +0000 (15:57 +0000)
from Benjamin Baier

sbin/fsck/fsck.c
sbin/fsck/fsutil.c

index 2e12254..51bb4b3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fsck.c,v 1.36 2015/05/29 15:53:46 deraadt Exp $       */
+/*     $OpenBSD: fsck.c,v 1.37 2015/05/29 15:57:36 deraadt Exp $       */
 /*     $NetBSD: fsck.c,v 1.7 1996/10/03 20:06:30 christos Exp $        */
 
 /*
@@ -287,8 +287,7 @@ checkfs(const char *vfstype, const char *spec, const char *mntpt, void *auxarg,
        switch (pid = fork()) {
        case -1:                                /* Error. */
                warn("fork");
-               if (optbuf)
-                       free(optbuf);
+               free(optbuf);
                free(argv);
                return (1);
 
@@ -320,8 +319,7 @@ checkfs(const char *vfstype, const char *spec, const char *mntpt, void *auxarg,
                /* NOTREACHED */
 
        default:                                /* Parent. */
-               if (optbuf)
-                       free(optbuf);
+               free(optbuf);
                free(argv);
 
                if (pidp) {
@@ -439,7 +437,7 @@ catopt(char *s0, const char *s1, int fr)
        } else
                cp = estrdup(s1);
 
-       if (s0 && fr)
+       if (fr)
                free(s0);
        return (cp);
 }
index e18335d..703872b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fsutil.c,v 1.20 2015/01/16 06:39:57 deraadt Exp $     */
+/*     $OpenBSD: fsutil.c,v 1.21 2015/05/29 15:57:36 deraadt Exp $     */
 /*     $NetBSD: fsutil.c,v 1.2 1996/10/03 20:06:31 christos Exp $      */
 
 /*
@@ -252,12 +252,13 @@ ereallocarray(void *p, size_t n, size_t s)
 {
        void *newp;
 
-       if (s == 0)
+       if (n == 0 || s == 0) {
+               free(p);
                err(1, "realloc failed");
+       }
        newp = reallocarray(p, n, s);
        if (newp == NULL) {
-               if (p)
-                       free(p);
+               free(p);
                err(1, "realloc failed");
        }
        return newp;