Skip to content

Commit 9bdef78

Browse files
committed
Merge branch 'jk/maint-apply-no-binary' into maint
* jk/maint-apply-no-binary: apply: don't segfault on binary files with missing data
2 parents d2a9922 + 24305cd commit 9bdef78

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

builtin/apply.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2645,6 +2645,12 @@ static int apply_binary_fragment(struct image *img, struct patch *patch)
26452645
unsigned long len;
26462646
void *dst;
26472647

2648+
if (!fragment)
2649+
return error("missing binary patch data for '%s'",
2650+
patch->new_name ?
2651+
patch->new_name :
2652+
patch->old_name);
2653+
26482654
/* Binary patch is irreversible without the optional second hunk */
26492655
if (apply_in_reverse) {
26502656
if (!fragment->next)

t/t4103-apply-binary.sh

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,16 @@ test_expect_success 'setup' "
3737
git diff-tree -p -C master binary >C.diff &&
3838
3939
git diff-tree -p --binary master binary >BF.diff &&
40-
git diff-tree -p --binary -C master binary >CF.diff
40+
git diff-tree -p --binary -C master binary >CF.diff &&
41+
42+
git diff-tree -p --full-index master binary >B-index.diff &&
43+
git diff-tree -p -C --full-index master binary >C-index.diff &&
44+
45+
git init other-repo &&
46+
(cd other-repo &&
47+
git fetch .. master &&
48+
git reset --hard FETCH_HEAD
49+
)
4150
"
4251

4352
test_expect_success 'stat binary diff -- should not fail.' \
@@ -100,6 +109,22 @@ test_expect_success 'apply binary diff (copy) -- should fail.' \
100109
'do_reset &&
101110
test_must_fail git apply --index C.diff'
102111

112+
test_expect_success 'apply binary diff with full-index' '
113+
do_reset &&
114+
git apply B-index.diff
115+
'
116+
117+
test_expect_success 'apply binary diff with full-index (copy)' '
118+
do_reset &&
119+
git apply C-index.diff
120+
'
121+
122+
test_expect_success 'apply full-index binary diff in new repo' '
123+
(cd other-repo &&
124+
do_reset &&
125+
test_must_fail git apply ../B-index.diff)
126+
'
127+
103128
test_expect_success 'apply binary diff without replacement.' \
104129
'do_reset &&
105130
git apply BF.diff'

0 commit comments

Comments
 (0)