[PATCH] Fix git patch header processing in git-apply.
[git.git] / apply.c
diff --git a/apply.c b/apply.c
index 7c1a841..3ebbf6b 100644 (file)
--- a/apply.c
+++ b/apply.c
@@ -387,7 +387,7 @@ static char *git_header_name(char *line)
                default:
                        continue;
                case '\n':
-                       break;
+                       return NULL;
                case '\t': case ' ':
                        second = name+len;
                        for (;;) {