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
986cd20a
Commit
986cd20a
authored
Dec 27, 2005
by
acurtis@xiphis.org
Browse files
Options
Browse Files
Download
Plain Diff
Merge acurtis@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into xiphis.org:/home/antony/work2/p4-bug15976
parents
79c7b62a
9aaa8a81
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
sql/ha_archive.cc
sql/ha_archive.cc
+0
-2
sql/mysqld.cc
sql/mysqld.cc
+1
-1
storage/archive/azio.c
storage/archive/azio.c
+1
-1
No files found.
sql/ha_archive.cc
View file @
986cd20a
...
...
@@ -591,8 +591,6 @@ int ha_archive::create(const char *name, TABLE *table_arg,
goto
error2
;
}
my_close
(
create_file
,
MYF
(
0
));
DBUG_RETURN
(
0
);
error3:
...
...
sql/mysqld.cc
View file @
986cd20a
...
...
@@ -1152,6 +1152,7 @@ void clean_up(bool print_message)
lex_free
();
/* Free some memory */
set_var_free
();
free_charsets
();
(
void
)
ha_panic
(
HA_PANIC_CLOSE
);
/* close all tables and logs */
if
(
!
opt_noacl
)
{
#ifdef HAVE_DLOPEN
...
...
@@ -1159,7 +1160,6 @@ void clean_up(bool print_message)
#endif
plugin_free
();
}
(
void
)
ha_panic
(
HA_PANIC_CLOSE
);
/* close all tables and logs */
if
(
tc_log
)
tc_log
->
close
();
xid_cache_free
();
...
...
storage/archive/azio.c
View file @
986cd20a
...
...
@@ -267,7 +267,7 @@ int destroy (s)
err
=
inflateEnd
(
&
(
s
->
stream
));
}
}
if
(
s
->
file
<
0
&&
my_close
(
s
->
file
,
MYF
(
0
)))
if
(
s
->
file
>
0
&&
my_close
(
s
->
file
,
MYF
(
0
)))
{
#ifdef ESPIPE
if
(
errno
!=
ESPIPE
)
/* fclose is broken for pipes in HP/UX */
...
...
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