diff options
Diffstat (limited to 'diffcore-break.c')
-rw-r--r-- | diffcore-break.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/diffcore-break.c b/diffcore-break.c index 15562e4556..3a7b60a037 100644 --- a/diffcore-break.c +++ b/diffcore-break.c @@ -69,7 +69,7 @@ static int should_break(struct diff_filespec *src, return 0; /* we do not break too small filepair */ if (diffcore_count_changes(src, dst, - NULL, NULL, + &src->cnt_data, &dst->cnt_data, 0, &src_copied, &literal_added)) return 0; @@ -204,8 +204,8 @@ void diffcore_break(int break_score) dp->score = score; dp->broken_pair = 1; - diff_free_filespec_data(p->one); - diff_free_filespec_data(p->two); + diff_free_filespec_blob(p->one); + diff_free_filespec_blob(p->two); free(p); /* not diff_free_filepair(), we are * reusing one and two here. */ |