Code

builtin-apply.c: fix the --- and +++ header filename consistency check
[git.git] / builtin-apply.c
index 36e2f9dda5c85c346e31f45afa6d28b107679970..8ca86f66c8e9bf55f99d5bb7e4d56913e1f74023 100644 (file)
@@ -686,7 +686,7 @@ static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name,
                if (isnull)
                        die("git apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
                another = find_name(line, NULL, p_value, TERM_TAB);
-               if (!another || memcmp(another, name, len))
+               if (!another || memcmp(another, name, len + 1))
                        die("git apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
                free(another);
                return orig_name;