Skip to content

Commit bb88923

Browse files
Mroikgitster
authored andcommitted
apply.c: fix -p argument parsing
"git apply" has an option -p that takes an integer as its argument. Unfortunately the function apply_option_parse_p() in charge of parsing this argument uses atoi() to convert from string to integer, which allows a non-digit after the number (e.g. "1q") to be silently ignored. As a consequence, an argument that does not begin with a digit silently becomes a zero. Despite this command working fine when a non-positive argument is passed, it might be useful for the end user to know that their input contains non-digits that might've been unintended. Replace atoi() with strtol_i() to catch malformed inputs. Signed-off-by: Mirko Faina <mroik@delayed.space> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 67ad421 commit bb88923

3 files changed

Lines changed: 38 additions & 1 deletion

File tree

apply.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4961,7 +4961,8 @@ static int apply_option_parse_p(const struct option *opt,
49614961

49624962
BUG_ON_OPT_NEG(unset);
49634963

4964-
state->p_value = atoi(arg);
4964+
if (strtol_i(arg, 10, &state->p_value) < 0 || state->p_value < 0)
4965+
die("<num> has to be a non-negative integer");
49654966
state->p_value_known = 1;
49664967
return 0;
49674968
}

t/t4120-apply-popt.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,27 @@ test_expect_success setup '
2323
rmdir süb
2424
'
2525

26+
test_expect_success 'git apply -p 1 patch' '
27+
test_when_finished "rm -rf t" &&
28+
git apply -p 1 $TEST_DIRECTORY/t4120/patch &&
29+
test_path_is_dir t
30+
'
31+
32+
test_expect_success 'apply fails due to non-num -p' '
33+
test_when_finished "rm -rf t test" &&
34+
test_must_fail git apply -p malformed $TEST_DIRECTORY/t4120/patch
35+
'
36+
37+
test_expect_success 'apply fails due to trailing non-digit in -p' '
38+
test_when_finished "rm -rf t test" &&
39+
test_must_fail git apply -p 2q $TEST_DIRECTORY/t4120/patch
40+
'
41+
42+
test_expect_success 'apply fails due to negative number in -p' '
43+
test_when_finished "rm -rf t test" &&
44+
test_must_fail git apply -p -1 $TEST_DIRECTORY/t4120/patch
45+
'
46+
2647
test_expect_success 'apply git diff with -p2' '
2748
cp file1.saved file1 &&
2849
git apply -p2 patch.file

t/t4120/patch

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
From 90ad11d5b2d437e82d4d992f72fb44c2227798b5 Mon Sep 17 00:00:00 2001
2+
From: Mroik <mroik@delayed.space>
3+
Date: Mon, 9 Mar 2026 23:25:00 +0100
4+
Subject: [PATCH] Test
5+
6+
---
7+
t/test/test | 0
8+
1 file changed, 0 insertions(+), 0 deletions(-)
9+
create mode 100644 t/test/test
10+
11+
diff --git a/t/test/test b/t/test/test
12+
new file mode 100644
13+
index 0000000000..e69de29bb2
14+
--
15+
2.53.0.851.ga537e3e6e9

0 commit comments

Comments
 (0)