|
|
@ -360,7 +360,7 @@ static int gitdiff_hdrend(const char *line, struct patch *patch) |
|
|
|
static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew) |
|
|
|
static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (!orig_name && !isnull) |
|
|
|
if (!orig_name && !isnull) |
|
|
|
return find_name(line, NULL, 1, 0); |
|
|
|
return find_name(line, NULL, 1, TERM_TAB); |
|
|
|
|
|
|
|
|
|
|
|
if (orig_name) { |
|
|
|
if (orig_name) { |
|
|
|
int len; |
|
|
|
int len; |
|
|
@ -370,7 +370,7 @@ static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, |
|
|
|
len = strlen(name); |
|
|
|
len = strlen(name); |
|
|
|
if (isnull) |
|
|
|
if (isnull) |
|
|
|
die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr); |
|
|
|
die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr); |
|
|
|
another = find_name(line, NULL, 1, 0); |
|
|
|
another = find_name(line, NULL, 1, TERM_TAB); |
|
|
|
if (!another || memcmp(another, name, len)) |
|
|
|
if (!another || memcmp(another, name, len)) |
|
|
|
die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr); |
|
|
|
die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr); |
|
|
|
free(another); |
|
|
|
free(another); |
|
|
|