apply: do not read from the filesystem under --index
authorJunio C Hamano <gitster@pobox.com>
Fri, 30 Jan 2015 23:15:59 +0000 (15:15 -0800)
committerJunio C Hamano <gitster@pobox.com>
Tue, 10 Feb 2015 21:41:16 +0000 (13:41 -0800)
We currently read the preimage to apply a patch from the index only
when the --cached option is given. Do so also when the command is
running under the --index option. With --index, the index entry and
the working tree file for a path that is involved in a patch must be
identical, so this should not affect the result, but by reading from
the index, we will get the protection to avoid reading an unintended
path beyond a symbolic link automatically.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/apply.c
index 8561236d04fabb9b81494325def4b7d0f2a5c22a..21e45a0f10939117fee4bad6bf6a61df3c653096 100644 (file)
@@ -3136,7 +3136,7 @@ static int load_patch_target(struct strbuf *buf,
                             const char *name,
                             unsigned expected_mode)
 {
-       if (cached) {
+       if (cached || check_index) {
                if (read_file_or_gitlink(ce, buf))
                        return error(_("read of %s failed"), name);
        } else if (name) {