Filter: Prefer xmalloc/xfree to malloc/free

This commit is contained in:
Pavel Tvrdik 2016-09-06 17:18:15 +02:00 committed by Ondrej Zajicek (work)
parent 4adcb9df1b
commit bc00f05815

View file

@ -82,7 +82,7 @@ build_tree(struct f_tree *from)
if (len <= 1024)
buf = alloca(len * sizeof(struct f_tree *));
else
buf = malloc(len * sizeof(struct f_tree *));
buf = xmalloc(len * sizeof(struct f_tree *));
/* Convert a degenerated tree into an sorted array */
i = 0;
@ -94,7 +94,7 @@ build_tree(struct f_tree *from)
root = build_tree_rec(buf, 0, len);
if (len > 1024)
free(buf);
xfree(buf);
return root;
}