cgit

commit 0edf76078e6a36ba502e6ffb97021166ea459a7f

Author: Lars Hjemli <hjemli@gmail.com>

shared.c: future-proof usage of git diff-structures

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 shared.c | 4 +++-


diff --git a/shared.c b/shared.c
index 89d1bab90f9e6d4f53ee873dfffb4fb9515bedbd..a764c4d6b25bbde782cafe159c0bef05ccc98f21 100644
--- a/shared.c
+++ b/shared.c
@@ -267,10 +267,12 @@
 	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);