From 7c028e224978e1d5a4f207cc42b9eb58d81897dd Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 23 Aug 2019 01:33:50 +0200 Subject: Some simple search/replace cases for allocation This commit exchanges some malloc(x + y * z) patterns that can be found with a simple git grep and are obvious for the new wrappers. Signed-off-by: David Oberhollenzer --- lib/fstree/fstree_from_dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/fstree/fstree_from_dir.c') diff --git a/lib/fstree/fstree_from_dir.c b/lib/fstree/fstree_from_dir.c index ae8cac9..9aab5df 100644 --- a/lib/fstree/fstree_from_dir.c +++ b/lib/fstree/fstree_from_dir.c @@ -90,7 +90,7 @@ static int populate_xattr(fstree_t *fs, tree_node_t *node) goto fail; if (vallen > 0) { - value = calloc(1, vallen + 1); + value = alloc_string(vallen); if (value == NULL) { perror("xattr value buffer"); goto fail; @@ -163,7 +163,7 @@ static int populate_dir(fstree_t *fs, tree_node_t *root, dev_t devstart, continue; if (S_ISLNK(sb.st_mode)) { - extra = calloc(1, sb.st_size + 1); + extra = alloc_string(sb.st_size); if (extra == NULL) goto fail_rdlink; -- cgit v1.2.3