Patch from Denis Vlasenko to add xstat() and use it.

This commit is contained in:
Rob Landley
2006-03-13 15:45:16 +00:00
parent 965030e35a
commit c5b1d4d6b1
12 changed files with 26 additions and 25 deletions

View File

@ -103,9 +103,7 @@ int gunzip_main(int argc, char **argv)
src_fd = bb_xopen(old_path, O_RDONLY);
/* Get the time stamp on the input file. */
if (stat(old_path, &stat_buf) < 0) {
bb_error_msg_and_die("Couldn't stat file %s", old_path);
}
xstat(old_path, &stat_buf);
}
/* Check that the input is sane. */