]> git.ipfire.org Git - thirdparty/git.git/blobdiff - apply.c
git-apply: consider it an error to apply no changes
[thirdparty/git.git] / apply.c
diff --git a/apply.c b/apply.c
index e02e760be2c4e55659187b362406a129fd908f22..ec63a0c1e0a68ebbd003ebe90776e12b42b081e7 100644 (file)
--- a/apply.c
+++ b/apply.c
@@ -1186,6 +1186,9 @@ static void write_out_one_result(struct patch *patch)
 
 static void write_out_results(struct patch *list)
 {
+       if (!list)
+               die("No changes");
+
        while (list) {
                write_out_one_result(list);
                list = list->next;