Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'maint'
author
Junio C Hamano
<junkio@cox.net>
Sat, 4 Nov 2006 11:54:20 +0000
(
03:54
-0800)
committer
Junio C Hamano
<junkio@cox.net>
Sat, 4 Nov 2006 11:54:20 +0000
(
03:54
-0800)
* maint:
apply: handle "traditional" creation/deletion diff correctly.
builtin-apply.c
patch
|
blob
|
history
raw
(from parent 1:
6768d6b
)
diff --git
a/builtin-apply.c
b/builtin-apply.c
index 11397f5504f98ccff47a90b228abc71b30327fb9..db7cdce1d37e2984f4d2663bb86eaec7f33f5789 100644
(file)
--- a/
builtin-apply.c
+++ b/
builtin-apply.c
@@
-1043,10
+1043,14
@@
static int parse_single_patch(char *line, unsigned long size, struct patch *patc
* then not having oldlines means the patch is creation,
* and not having newlines means the patch is deletion.
*/
- if (patch->is_new < 0 && !oldlines)
+ if (patch->is_new < 0 && !oldlines)
{
patch->is_new = 1;
- if (patch->is_delete < 0 && !newlines)
+ patch->old_name = NULL;
+ }
+ if (patch->is_delete < 0 && !newlines) {
patch->is_delete = 1;
+ patch->new_name = NULL;
+ }
}
if (0 < patch->is_new && oldlines)