author | Lars Hjemli <hjemli@gmail.com> | 2008-12-26 10:02:02 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-12-26 10:02:02 (UTC) |
commit | 0edf76078e6a36ba502e6ffb97021166ea459a7f (patch) (side-by-side diff) | |
tree | 7c3392f15eaa75855be9777da59f7f655c93af92 | |
parent | 11456a60deab19f5e3a1d191bdf48adfba9195e4 (diff) | |
download | cgit-0edf76078e6a36ba502e6ffb97021166ea459a7f.zip cgit-0edf76078e6a36ba502e6ffb97021166ea459a7f.tar.gz cgit-0edf76078e6a36ba502e6ffb97021166ea459a7f.tar.bz2 |
shared.c: future-proof usage of git diff-structures
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | shared.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -254,36 +254,38 @@ int filediff_cb(void *priv, mmbuffer_t *mb, int nbuf) } return 0; } int cgit_diff_files(const unsigned char *old_sha1, const unsigned char *new_sha1, linediff_fn fn) { mmfile_t file1, file2; xpparam_t diff_params; xdemitconf_t emit_params; xdemitcb_t emit_cb; if (!load_mmfile(&file1, old_sha1) || !load_mmfile(&file2, new_sha1)) return 1; + memset(&diff_params, 0, sizeof(diff_params)); + memset(&emit_params, 0, sizeof(emit_params)); + memset(&emit_cb, 0, sizeof(emit_cb)); diff_params.flags = XDF_NEED_MINIMAL; emit_params.ctxlen = 3; emit_params.flags = XDL_EMIT_FUNCNAMES; - emit_params.find_func = NULL; emit_cb.outf = filediff_cb; emit_cb.priv = fn; xdl_diff(&file1, &file2, &diff_params, &emit_params, &emit_cb); return 0; } void cgit_diff_tree(const unsigned char *old_sha1, const unsigned char *new_sha1, filepair_fn fn, const char *prefix) { struct diff_options opt; int ret; int prefixlen; diff_setup(&opt); opt.output_format = DIFF_FORMAT_CALLBACK; |