From: Derrick Stolee Date: Fri, 13 Jul 2018 16:30:46 +0000 (+0000) Subject: coccinelle: update commit.cocci X-Git-Tag: v2.19.0-rc0~110^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b18ef13a3fc5ed6e77980f67a7f3ca89050c1715;p=git coccinelle: update commit.cocci A recent patch series renamed the get_commit_tree_from_graph method but forgot to update the coccinelle script that exempted it from rules regarding accesses to 'maybe_tree'. This fixes that oversight to bring the coccinelle scripts back to a good state. Signed-off-by: Derrick Stolee Signed-off-by: Junio C Hamano --- diff --git a/contrib/coccinelle/commit.cocci b/contrib/coccinelle/commit.cocci index a7e9215ffc..aec3345adb 100644 --- a/contrib/coccinelle/commit.cocci +++ b/contrib/coccinelle/commit.cocci @@ -12,7 +12,7 @@ expression c; // These excluded functions must access c->maybe_tree direcly. @@ -identifier f !~ "^(get_commit_tree|get_commit_tree_in_graph|load_tree_for_commit)$"; +identifier f !~ "^(get_commit_tree|get_commit_tree_in_graph_one|load_tree_for_commit)$"; expression c; @@ f(...) {...