From aae81fd483b70c24ade4f1a26c7de39051ab7995 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 28 Sep 2019 23:36:55 +0200 Subject: Cleanup: remove string allocation helper function Signed-off-by: David Oberhollenzer --- mkfs/dirscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mkfs') diff --git a/mkfs/dirscan.c b/mkfs/dirscan.c index e33e6f7..6d6b745 100644 --- a/mkfs/dirscan.c +++ b/mkfs/dirscan.c @@ -150,7 +150,7 @@ static int populate_dir(fstree_t *fs, tree_node_t *root, dev_t devstart, continue; if (S_ISLNK(sb.st_mode)) { - extra = alloc_string(sb.st_size); + extra = calloc(1, sb.st_size + 1); if (extra == NULL) goto fail_rdlink; -- cgit v1.2.3