Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
rename: warn user when we have turned off rename detection
author
Jeff King
<peff@peff.net>
Sat, 1 Mar 2008 06:14:31 +0000
(
01:14
-0500)
committer
Junio C Hamano
<gitster@pobox.com>
Sat, 1 Mar 2008 09:30:15 +0000
(
01:30
-0800)
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diffcore-rename.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
3ebfe63
)
diff --git
a/diffcore-rename.c
b/diffcore-rename.c
index 3d377251bef8ea843b7a7fa41f98d611daecbcc1..31941bcbbf457fe02097f8c46d25f1f9fc7c4f9f 100644
(file)
--- a/
diffcore-rename.c
+++ b/
diffcore-rename.c
@@
-468,10
+468,11
@@
void diffcore_rename(struct diff_options *options)
*/
if (rename_limit <= 0 || rename_limit > 32767)
rename_limit = 32767;
*/
if (rename_limit <= 0 || rename_limit > 32767)
rename_limit = 32767;
- if (
num_create > rename_limit && num_src > rename_limit)
- goto cleanup;
- if (num_create * num_src > rename_limit * rename_limit)
+ if (
(num_create > rename_limit && num_src > rename_limit) ||
+ (num_create * num_src > rename_limit * rename_limit)) {
+ warning("too many files, skipping inexact rename detection");
goto cleanup;
goto cleanup;
+ }
mx = xmalloc(sizeof(*mx) * num_create * num_src);
for (dst_cnt = i = 0; i < rename_dst_nr; i++) {
mx = xmalloc(sizeof(*mx) * num_create * num_src);
for (dst_cnt = i = 0; i < rename_dst_nr; i++) {