strbuf_addch(sb, c);
}
-char *strlpart(char *txt, int maxlen)
-{
- char *result;
-
- if (!txt)
- return txt;
-
- if (strlen(txt) <= maxlen)
- return txt;
- result = xmalloc(maxlen + 1);
- memcpy(result, txt, maxlen - 3);
- result[maxlen-1] = result[maxlen-2] = result[maxlen-3] = '.';
- result[maxlen] = '\0';
- return result;
-}
-
void cgit_add_ref(struct reflist *list, struct refinfo *ref)
{
size_t size;
opt.format_callback = cgit_diff_tree_cb;
opt.format_callback_data = fn;
if (prefix) {
- item.match = prefix;
+ item.match = xstrdup(prefix);
item.len = strlen(prefix);
opt.pathspec.nr = 1;
opt.pathspec.items = &item;
diff_root_tree_sha1(new_oid->hash, "", &opt);
diffcore_std(&opt);
diff_flush(&opt);
+
+ free(item.match);
}
void cgit_diff_commit(struct commit *commit, filepair_fn fn, const char *prefix)