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
94eb027f
Commit
94eb027f
authored
Dec 06, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only call mysql_server_end if mysql_server_init has been called.
Remove DBUG_ENTER in my_end
parent
eb1ba91d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
client/mysqltest.c
client/mysqltest.c
+9
-2
No files found.
client/mysqltest.c
View file @
94eb027f
...
...
@@ -103,6 +103,7 @@ static my_bool disable_query_log= 0, disable_result_log= 0;
static
my_bool
disable_warnings
=
0
,
disable_ps_warnings
=
0
;
static
my_bool
disable_info
=
1
;
static
my_bool
abort_on_error
=
1
;
static
my_bool
server_initialized
=
0
;
static
char
**
default_argv
;
static
const
char
*
load_default_groups
[]
=
{
"mysqltest"
,
"client"
,
0
};
...
...
@@ -770,13 +771,18 @@ void free_used_memory()
free_all_replace
();
my_free
(
pass
,
MYF
(
MY_ALLOW_ZERO_PTR
));
free_defaults
(
default_argv
);
mysql_server_end
();
free_re
();
#ifdef __WIN__
free_tmp_sh_file
();
free_win_path_patterns
();
#endif
DBUG_VOID_RETURN
;
/* Only call mysql_server_end if mysql_server_init has been called */
if
(
server_initialized
)
mysql_server_end
();
/* Don't use DBUG after mysql_server_end() */
return
;
}
...
...
@@ -5621,6 +5627,7 @@ int main(int argc, char **argv)
embedded_server_args
,
(
char
**
)
embedded_server_groups
))
die
(
"Can't initialize MySQL server"
);
server_initialized
=
1
;
if
(
cur_file
==
file_stack
&&
cur_file
->
file
==
0
)
{
cur_file
->
file
=
stdin
;
...
...
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