From 5e224a2ed01facb1233474dd169307f499e70257 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 23 May 2005 12:31:59 -0700 Subject: [PATCH] git-apply: bad patch fragments are fatal Don't just stop at them and look for the next header. Die, die, die! --- apply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apply.c b/apply.c index 85d7965da..536b06829 100644 --- a/apply.c +++ b/apply.c @@ -240,7 +240,7 @@ static int apply_single_patch(char *line, unsigned long size) while (size > 4 && !memcmp(line, "@@ -", 4)) { int len = apply_fragment(line, size); if (len <= 0) - break; + die("corrupt patch"); printf("applying fragment:\n%.*s\n\n", len, line); -- 2.30.2