Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-09-08 23:30:32 +0300
committerJunio C Hamano <gitster@pobox.com>2021-09-08 23:30:32 +0300
commit7b062226196c7234818106ab5274b32519e41575 (patch)
treeaf74b94d18186099a4a7929968a7691138058735 /contrib
parentc8f491668e46d66290aec97caaf94fe2c1ecccbd (diff)
parent66e905b7dd0f4e9dd576be681f30fbaeeb19ec4a (diff)
Merge branch 'rs/xopen-reports-open-failures'
Error diagnostics improvement. * rs/xopen-reports-open-failures: use xopen() to handle fatal open(2) failures xopen: explicitly report creation failures
Diffstat (limited to 'contrib')
-rw-r--r--contrib/coccinelle/xopen.cocci16
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/coccinelle/xopen.cocci b/contrib/coccinelle/xopen.cocci
new file mode 100644
index 0000000000..814d7b8a1a
--- /dev/null
+++ b/contrib/coccinelle/xopen.cocci
@@ -0,0 +1,16 @@
+@@
+identifier fd;
+identifier die_fn =~ "^(die|die_errno)$";
+@@
+(
+ fd =
+- open
++ xopen
+ (...);
+|
+ int fd =
+- open
++ xopen
+ (...);
+)
+- if ( \( fd < 0 \| fd == -1 \) ) { die_fn(...); }