Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
cbb8c3f0
Commit
cbb8c3f0
authored
Sep 19, 2009
by
Igor Babaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #47455 - a failure with main.myisam_crash_before_flush_keys.test
on Windows.
parent
6811136c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
storage/myisam/myisamchk.c
storage/myisam/myisamchk.c
+4
-1
No files found.
storage/myisam/myisamchk.c
View file @
cbb8c3f0
...
...
@@ -83,7 +83,9 @@ HA_CHECK check_param;
int
main
(
int
argc
,
char
**
argv
)
{
int
error
;
uchar
rc
;
MY_INIT
(
argv
[
0
]);
my_progname_short
=
"myisamchk"
;
myisamchk_init
(
&
check_param
);
check_param
.
opt_lock_memory
=
1
;
/* Lock memory if possible */
...
...
@@ -132,7 +134,8 @@ int main(int argc, char **argv)
free_tmpdir
(
&
myisamchk_tmpdir
);
ft_free_stopwords
();
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
return
0
;
/* No compiler warning */
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment