Commit cbb8c3f0 authored by Igor Babaev's avatar Igor Babaev

Fixed bug #47455 - a failure with main.myisam_crash_before_flush_keys.test

on Windows.
parent 6811136c
...@@ -83,7 +83,9 @@ HA_CHECK check_param; ...@@ -83,7 +83,9 @@ HA_CHECK check_param;
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
int error; int error;
uchar rc;
MY_INIT(argv[0]); MY_INIT(argv[0]);
my_progname_short= "myisamchk";
myisamchk_init(&check_param); myisamchk_init(&check_param);
check_param.opt_lock_memory=1; /* Lock memory if possible */ check_param.opt_lock_memory=1; /* Lock memory if possible */
...@@ -132,7 +134,8 @@ int main(int argc, char **argv) ...@@ -132,7 +134,8 @@ int main(int argc, char **argv)
free_tmpdir(&myisamchk_tmpdir); free_tmpdir(&myisamchk_tmpdir);
ft_free_stopwords(); ft_free_stopwords();
my_end(check_param.testflag & T_INFO ? MY_CHECK_ERROR | MY_GIVE_INFO : MY_CHECK_ERROR); my_end(check_param.testflag & T_INFO ? MY_CHECK_ERROR | MY_GIVE_INFO : MY_CHECK_ERROR);
exit(error); rc= (uchar) error;
exit(rc);
#ifndef _lint #ifndef _lint
return 0; /* No compiler warning */ return 0; /* No compiler warning */
#endif #endif
......
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