Commit 665cbabe authored by gluh@mysql.com's avatar gluh@mysql.com

Bug #5843: Server code does not check whether PID file was successfully written

parent 60c4ce90
...@@ -6749,9 +6749,15 @@ static void create_pid_file() ...@@ -6749,9 +6749,15 @@ static void create_pid_file()
char buff[21], *end; char buff[21], *end;
end= int10_to_str((long) getpid(), buff, 10); end= int10_to_str((long) getpid(), buff, 10);
*end++= '\n'; *end++= '\n';
(void) my_write(file, (byte*) buff, (uint) (end-buff),MYF(MY_WME)); if (!my_write(file, (byte*) buff, (uint) (end-buff), MYF(MY_WME | MY_NABP)))
{
(void) my_close(file, MYF(0));
return;
}
(void) my_close(file, MYF(0)); (void) my_close(file, MYF(0));
} }
sql_perror("Can't start server: can't create PID file");
exit(1);
} }
......
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