calloc -> malloc when the memory is immediately overwritten with memcpy.
authormmcc <mmcc@openbsd.org>
Tue, 27 Oct 2015 18:19:33 +0000 (18:19 +0000)
committermmcc <mmcc@openbsd.org>
Tue, 27 Oct 2015 18:19:33 +0000 (18:19 +0000)
ok claudio@

usr.sbin/bgpd/mrt.c
usr.sbin/bgpd/parse.y

index 2357cae..3dbf6c1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mrt.c,v 1.78 2015/08/20 22:39:29 deraadt Exp $ */
+/*     $OpenBSD: mrt.c,v 1.79 2015/10/27 18:19:33 mmcc Exp $ */
 
 /*
  * Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org>
@@ -990,7 +990,7 @@ mrt_mergeconfig(struct mrt_head *xconf, struct mrt_head *nconf)
        LIST_FOREACH(m, nconf, entry) {
                if ((xm = mrt_get(xconf, m)) == NULL) {
                        /* NEW */
-                       if ((xm = calloc(1, sizeof(struct mrt_config))) == NULL)
+                       if ((xm = malloc(sizeof(struct mrt_config))) == NULL)
                                fatal("mrt_mergeconfig");
                        memcpy(xm, m, sizeof(struct mrt_config));
                        xm->state = MRT_STATE_OPEN;
index a718afa..1c1355f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: parse.y,v 1.285 2015/10/22 13:30:07 reyk Exp $ */
+/*     $OpenBSD: parse.y,v 1.286 2015/10/27 18:19:33 mmcc Exp $ */
 
 /*
  * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -3509,7 +3509,7 @@ copy_filterset(struct filter_set_head *source, struct filter_set_head *dest)
                return;
 
        TAILQ_FOREACH(s, source, entry) {
-               if ((t = calloc(1, sizeof(struct filter_set))) == NULL)
+               if ((t = malloc(sizeof(struct filter_set))) == NULL)
                        fatal(NULL);
                memcpy(t, s, sizeof(struct filter_set));
                TAILQ_INSERT_TAIL(dest, t, entry);