diffcore-rename: avoid unnecessary strdup'ing in break_idx
commit61bf4490afffb946787edec63b932551b3089d27
authorElijah Newren <newren@gmail.com>
Tue, 8 Jun 2021 16:11:40 +0000 (8 16:11 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 9 Jun 2021 02:40:04 +0000 (9 11:40 +0900)
tree7ad442158e55ae4e401816018de6375982524ed4
parent5a3743da326b2e041c65ac12ba0d04a1fed45b58
diffcore-rename: avoid unnecessary strdup'ing in break_idx

The keys of break_idx are strings from the diff_filepairs of
diff_queued_diff.  break_idx is only used in location_rename_dst(), and
that usage is always before any free'ing of the pairs (and thus the
strings in the pairs).  As such, there is no need to strdup these keys;
we can just reuse the existing strings as-is.

The merge logic doesn't make use of break detection, so this does not
affect the performance of any of my testcases.  It was just a minor
unrelated optimization noted in passing while looking at the code.

Signed-off-by: Elijah Newren <newren@gmail.com>
Reviewed-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diffcore-rename.c