From 08c205a02f4011031f1d03a1397f0f6f97b89caf Mon Sep 17 00:00:00 2001 From: olszomal Date: Fri, 13 Jan 2023 14:17:53 +0100 Subject: [PATCH] Remove reduplicated checking for outdata file exists, CID 1519404 --- osslsigncode.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index d6ce4e7..c113e84 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -6231,11 +6231,6 @@ int main(int argc, char **argv) if (cmd != CMD_VERIFY) { /* 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); if (outdata == NULL) DO_EXIT_1("Failed to create file: %s\n", options.outfile);