1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixed MDEV-385: mysqltest running with continue-on-error crashes on a non-SQL command producing an error

client/mysqltest.cc:
  Added missing DBUG_VOID_RETURN
This commit is contained in:
Michael Widenius
2012-07-10 09:02:12 +03:00
parent de879df7fa
commit 703ee1ad1b

View File

@@ -1285,7 +1285,7 @@ void handle_command_error(struct st_command *command, uint error,
"errno: %d",
command->first_word_len, command->query, error, my_errno,
sys_errno);
return;
DBUG_VOID_RETURN;
}
i= match_expected_error(command, error, NULL);