Merge branch 'jc/maint-apply-fix' into maint

* jc/maint-apply-fix:
  builtin-apply.c: do not set bogus mode in check_preimage() for deleted path
This commit is contained in:
Junio C Hamano 2009-02-05 18:06:11 -08:00
Родитель 7b261711a6 a15080e5f4
Коммит c7893501e8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2448,7 +2448,7 @@ static int check_preimage(struct patch *patch, struct cache_entry **ce, struct s
if (st_mode != patch->old_mode)
fprintf(stderr, "warning: %s has type %o, expected %o\n",
old_name, st_mode, patch->old_mode);
if (!patch->new_mode)
if (!patch->new_mode && !patch->is_delete)
patch->new_mode = st_mode;
return 0;