use xopen() to handle fatal open(2) failures
Add and apply a semantic patch for using xopen() instead of calling open(2) and die() or die_errno() explicitly. This makes the error messages more consistent and shortens the code. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
a7439d0f9d
commit
66e905b7dd
@ -75,9 +75,7 @@ static int split_one(FILE *mbox, const char *name, int allow_bare)
|
||||
fprintf(stderr, "corrupt mailbox\n");
|
||||
exit(1);
|
||||
}
|
||||
fd = open(name, O_WRONLY | O_CREAT | O_EXCL, 0666);
|
||||
if (fd < 0)
|
||||
die_errno("cannot open output file '%s'", name);
|
||||
fd = xopen(name, O_WRONLY | O_CREAT | O_EXCL, 0666);
|
||||
output = xfdopen(fd, "w");
|
||||
|
||||
/* Copy it out, while searching for a line that begins with
|
||||
|
Reference in New Issue
Block a user