Remove reduplicated checking for outdata file exists, CID 1519404

This commit is contained in:
olszomal 2023-01-13 14:17:53 +01:00 committed by Michał Trojnara
parent acfece2c26
commit 08c205a02f

View File

@ -6231,11 +6231,6 @@ int main(int argc, char **argv)
if (cmd != CMD_VERIFY) { if (cmd != CMD_VERIFY) {
/* Create outdata file */ /* Create outdata file */
#ifndef WIN32
if (!access(options.outfile, R_OK))
/* outdata file exists */
DO_EXIT_1("Failed to create file: %s\n", options.outfile);
#endif
outdata = BIO_new_file(options.outfile, FILE_CREATE_MODE); outdata = BIO_new_file(options.outfile, FILE_CREATE_MODE);
if (outdata == NULL) if (outdata == NULL)
DO_EXIT_1("Failed to create file: %s\n", options.outfile); DO_EXIT_1("Failed to create file: %s\n", options.outfile);