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
f693d22b
Commit
f693d22b
authored
Aug 12, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure to clean up temporary files in myisampack even when the
-T option is used. (Bug #12235)
parent
61a9bace
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
myisam/myisampack.c
myisam/myisampack.c
+8
-0
No files found.
myisam/myisampack.c
View file @
f693d22b
...
...
@@ -609,14 +609,22 @@ static int compress(PACK_MRG_INFO *mrg,char *result_table)
else
error
=
my_rename
(
new_name
,
org_name
,
MYF
(
MY_WME
));
if
(
!
error
)
{
VOID
(
my_copystat
(
temp_name
,
org_name
,
MYF
(
MY_COPYTIME
)));
if
(
tmp_dir
[
0
])
VOID
(
my_delete
(
new_name
,
MYF
(
MY_WME
)));
}
}
}
else
{
if
(
tmp_dir
[
0
])
{
error
=
my_copy
(
new_name
,
org_name
,
MYF
(
MY_WME
|
MY_HOLD_ORIGINAL_MODES
|
MY_COPYTIME
));
if
(
!
error
)
VOID
(
my_delete
(
new_name
,
MYF
(
MY_WME
)));
}
else
error
=
my_redel
(
org_name
,
new_name
,
MYF
(
MY_WME
|
MY_COPYTIME
));
}
...
...
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