Commit 20cefd5f authored by Vasil Dimov's avatar Vasil Dimov

Merge mysql-5.1 -> mysql-5.5

parents bac6523d 17c71588
...@@ -1261,9 +1261,14 @@ innobase_mysql_tmpfile(void) ...@@ -1261,9 +1261,14 @@ innobase_mysql_tmpfile(void)
/*========================*/ /*========================*/
{ {
int fd2 = -1; int fd2 = -1;
File fd = mysql_tmpfile("ib"); File fd;
DBUG_EXECUTE_IF("innobase_tmpfile_creation_failure", return(-1);); DBUG_EXECUTE_IF(
"innobase_tmpfile_creation_failure",
return(-1);
);
fd = mysql_tmpfile("ib");
if (fd >= 0) { if (fd >= 0) {
/* Copy the file descriptor, so that the additional resources /* Copy the file descriptor, so that the additional resources
......
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