From a6843f2d1ecf58a3ec2d015f7d379f923fb14528 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 23 Apr 2014 21:31:38 +0000 Subject: Audit malloc(3)/calloc(3)/realloc(3) in VERSION_1_12. --- apropos_db.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apropos_db.c') 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 * Copyright (c) 2011, 2014 Ingo Schwarze @@ -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)); -- cgit v1.2.3-56-ge451