mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
Post Fix to Bug#14628410 - ASSERTION `! IS_SET()' FAILED IN
DIAGNOSTICS_AREA::SET_OK_STATUS Use DBUG_RETURN() instead of return() if DBUG_ENTER() is used in the function. This patch is to fix the Windows pb2 failure on mysql-5.1 Approved by Marko. rb#1792
This commit is contained in:
parent
b53881c4de
commit
e40fa2ba98
1 changed files with 1 additions and 1 deletions
|
@ -1142,7 +1142,7 @@ innobase_mysql_tmpfile(void)
|
|||
|
||||
DBUG_EXECUTE_IF(
|
||||
"innobase_tmpfile_creation_failure",
|
||||
return(-1);
|
||||
DBUG_RETURN(-1);
|
||||
);
|
||||
|
||||
tmpdir = my_tmpdir(&mysql_tmpdir_list);
|
||||
|
|
Loading…
Reference in a new issue