On 26.08.15 21:46, David Turner wrote: > Instead of a linear search over common_list to check whether > a path is common, use a trie. The trie search operates on > path prefixes, and handles excludes. > > Signed-off-by: David Turner <dturner@xxxxxxxxxxxxxxxx> > --- > path.c | 226 ++++++++++++++++++++++++++++++++++++++++++++++---- > t/t0060-path-utils.sh | 1 + > 2 files changed, 213 insertions(+), 14 deletions(-) > > diff --git a/path.c b/path.c > + child->len = root->len - i - 1; > + if (child->len) { > + child->contents = strndup(root->contents + i + 1, > + child->len); > } Could we use xtrndup() instead of strndup() ? (Otherwise it won't compile under Mac OS here) -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html