Use reallocarray() instead of recallocarray(), this code does not need the
authorclaudio <claudio@openbsd.org>
Tue, 10 Sep 2024 08:37:52 +0000 (08:37 +0000)
committerclaudio <claudio@openbsd.org>
Tue, 10 Sep 2024 08:37:52 +0000 (08:37 +0000)
extra security measures of recallocarray() which adds a lot of overhead.
OK tb@

usr.sbin/bgpd/rtr.c

index 4ea5aa9..94bed64 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rtr.c,v 1.22 2024/08/12 09:04:23 claudio Exp $ */
+/*     $OpenBSD: rtr.c,v 1.23 2024/09/10 08:37:52 claudio Exp $ */
 
 /*
  * Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org>
@@ -143,7 +143,7 @@ aspa_set_entry(struct aspa_set *aspa, uint32_t asnum)
        }
 
        num = aspa->num + 1;
-       newtas = recallocarray(aspa->tas, aspa->num, num, sizeof(uint32_t));
+       newtas = reallocarray(aspa->tas, num, sizeof(uint32_t));
        if (newtas == NULL)
                fatal("aspa_set merge");