aboutsummaryrefslogtreecommitdiff
path: root/lib/fstree/gen_inode_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fstree/gen_inode_table.c')
-rw-r--r--lib/fstree/gen_inode_table.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/fstree/gen_inode_table.c b/lib/fstree/gen_inode_table.c
index d97c645..a5a28c9 100644
--- a/lib/fstree/gen_inode_table.c
+++ b/lib/fstree/gen_inode_table.c
@@ -61,8 +61,7 @@ int fstree_gen_inode_table(fstree_t *fs)
size_t inum = 1;
fs->inode_tbl_size = count_nodes(fs->root);
- fs->inode_table = alloc_array(sizeof(tree_node_t *),
- fs->inode_tbl_size);
+ fs->inode_table = calloc(1, sizeof(tree_node_t*) * fs->inode_tbl_size);
if (fs->inode_table == NULL) {
perror("allocating inode table");