Commit 358b8a49 authored by serg@serg.mylan's avatar serg@serg.mylan

Merge

parents 89a0623e 09b2dc89
...@@ -961,7 +961,7 @@ static File create_file(THD *thd, char *path, sql_exchange *exchange, ...@@ -961,7 +961,7 @@ static File create_file(THD *thd, char *path, sql_exchange *exchange,
return -1; return -1;
} }
/* Create the file world readable */ /* Create the file world readable */
if ((file= my_create(path, 0666, O_WRONLY, MYF(MY_WME))) < 0) if ((file= my_create(path, 0666, O_WRONLY|O_EXCL, MYF(MY_WME))) < 0)
return file; return file;
#ifdef HAVE_FCHMOD #ifdef HAVE_FCHMOD
(void) fchmod(file, 0666); // Because of umask() (void) fchmod(file, 0666); // Because of umask()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment