aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apropos_db.c
diff options
context:
space:
mode:
Diffstat (limited to 'apropos_db.c')
-rw-r--r--apropos_db.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apropos_db.c b/apropos_db.c
index f96c94f9..2eee2091 100644
--- a/apropos_db.c
+++ b/apropos_db.c
@@ -1,4 +1,4 @@
-/* $Id: apropos_db.c,v 1.32.2.5 2014/03/23 12:04:54 schwarze Exp $ */
+/* $Id: apropos_db.c,v 1.32.2.6 2014/04/23 21:31:38 schwarze Exp $ */
/*
* Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -555,8 +555,8 @@ single_search(struct rectree *tree, const struct opts *opts,
if (strcasecmp(opts->arch, r.arch))
continue;
- tree->node = rs = mandoc_realloc
- (rs, (tree->len + 1) * sizeof(struct res));
+ tree->node = rs = mandoc_reallocarray(rs,
+ tree->len + 1, sizeof(struct res));
memcpy(&rs[tree->len], &r, sizeof(struct res));
memset(&r, 0, sizeof(struct res));