summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-09-23 13:44:50 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-09-23 13:44:50 -0700
commitb1b065ee35619a42df7381363ffd7096cf1b9a3d (patch)
treee2cf25dc8a98d23e2c769f24c8ab969b19055319 /contrib
parentMerge branch 'kz/revindex-comment-fix' (diff)
parentindex-pack: use xopen in init_thread (diff)
downloadtgif-b1b065ee35619a42df7381363ffd7096cf1b9a3d.tar.xz
Merge branch 'rs/use-xopen-in-index-pack'
Code clean-up. * rs/use-xopen-in-index-pack: index-pack: use xopen in init_thread
Diffstat (limited to 'contrib')
-rw-r--r--contrib/coccinelle/xopen.cocci13
1 files changed, 8 insertions, 5 deletions
diff --git a/contrib/coccinelle/xopen.cocci b/contrib/coccinelle/xopen.cocci
index 814d7b8a1a..b71db67019 100644
--- a/contrib/coccinelle/xopen.cocci
+++ b/contrib/coccinelle/xopen.cocci
@@ -2,15 +2,18 @@
identifier fd;
identifier die_fn =~ "^(die|die_errno)$";
@@
-(
- fd =
+ int fd =
- open
+ xopen
(...);
-|
- int fd =
+- if ( \( fd < 0 \| fd == -1 \) ) { die_fn(...); }
+
+@@
+expression fd;
+identifier die_fn =~ "^(die|die_errno)$";
+@@
+ fd =
- open
+ xopen
(...);
-)
- if ( \( fd < 0 \| fd == -1 \) ) { die_fn(...); }