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
c1ab560c
Commit
c1ab560c
authored
Mar 05, 2002
by
monty@tik.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected fix for not freed memory when using corrupted tables
parent
cde08965
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
+11
-2
Docs/manual.texi
Docs/manual.texi
+8
-0
configure.in
configure.in
+1
-1
sql/sql_base.cc
sql/sql_base.cc
+0
-1
sql/table.cc
sql/table.cc
+2
-0
No files found.
Docs/manual.texi
View file @
c1ab560c
...
@@ -46892,6 +46892,12 @@ not yet 100% confident in this code.
...
@@ -46892,6 +46892,12 @@ not yet 100% confident in this code.
@itemize @bullet
@itemize @bullet
@item
@item
Memory leak (16 bytes per every @strong{corrupted} table) closed.
Memory leak (16 bytes per every @strong{corrupted} table) closed.
@item
Fixed binary builds to use @code{--enable-local-infile}.
@item
Update source to work with new @code{bison} version.
@item
Updated shell scripts to new agree with new POSIX standard.
@end itemize
@end itemize
@node News-3.23.49, News-3.23.48, News-3.23.50, News-3.23.x
@node News-3.23.49, News-3.23.48, News-3.23.50, News-3.23.x
...
@@ -46909,6 +46915,8 @@ Added options to make @code{LOAD DATA LOCAL INFILE} more secure.
...
@@ -46909,6 +46915,8 @@ Added options to make @code{LOAD DATA LOCAL INFILE} more secure.
MySQL binary release 3.23.48 for Linux contained a new glibc library, which
MySQL binary release 3.23.48 for Linux contained a new glibc library, which
has serious problems under high load and RedHat 7.2. The 3.23.49 binary
has serious problems under high load and RedHat 7.2. The 3.23.49 binary
release doesn't have this problem.
release doesn't have this problem.
@item
Fixed shutdown problem on NT.
@end itemize
@end itemize
@node News-3.23.48, News-3.23.47, News-3.23.49, News-3.23.x
@node News-3.23.48, News-3.23.47, News-3.23.49, News-3.23.x
configure.in
View file @
c1ab560c
...
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
...
@@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT
(
sql/mysqld.cc
)
AC_INIT
(
sql/mysqld.cc
)
AC_CANONICAL_SYSTEM
AC_CANONICAL_SYSTEM
# The Docs Makefile.am parses this line!
# The Docs Makefile.am parses this line!
AM_INIT_AUTOMAKE
(
mysql, 3.23.
49a
)
AM_INIT_AUTOMAKE
(
mysql, 3.23.
50
)
AM_CONFIG_HEADER
(
config.h
)
AM_CONFIG_HEADER
(
config.h
)
PROTOCOL_VERSION
=
10
PROTOCOL_VERSION
=
10
...
...
sql/sql_base.cc
View file @
c1ab560c
...
@@ -277,7 +277,6 @@ void intern_close_table(TABLE *table)
...
@@ -277,7 +277,6 @@ void intern_close_table(TABLE *table)
free_io_cache
(
table
);
free_io_cache
(
table
);
if
(
table
->
file
)
if
(
table
->
file
)
VOID
(
closefrm
(
table
));
// close file
VOID
(
closefrm
(
table
));
// close file
hash_free
(
&
table
->
name_hash
);
}
}
...
...
sql/table.cc
View file @
c1ab560c
...
@@ -573,6 +573,7 @@ int openfrm(const char *name, const char *alias, uint db_stat, uint prgflag,
...
@@ -573,6 +573,7 @@ int openfrm(const char *name, const char *alias, uint db_stat, uint prgflag,
delete
outparam
->
file
;
delete
outparam
->
file
;
outparam
->
file
=
0
;
// For easyer errorchecking
outparam
->
file
=
0
;
// For easyer errorchecking
outparam
->
db_stat
=
0
;
outparam
->
db_stat
=
0
;
hash_free
(
&
outparam
->
name_hash
);
free_root
(
&
outparam
->
mem_root
,
MYF
(
0
));
free_root
(
&
outparam
->
mem_root
,
MYF
(
0
));
my_free
(
outparam
->
table_name
,
MYF
(
MY_ALLOW_ZERO_PTR
));
my_free
(
outparam
->
table_name
,
MYF
(
MY_ALLOW_ZERO_PTR
));
DBUG_RETURN
(
error
);
DBUG_RETURN
(
error
);
...
@@ -600,6 +601,7 @@ int closefrm(register TABLE *table)
...
@@ -600,6 +601,7 @@ int closefrm(register TABLE *table)
}
}
delete
table
->
file
;
delete
table
->
file
;
table
->
file
=
0
;
/* For easyer errorchecking */
table
->
file
=
0
;
/* For easyer errorchecking */
hash_free
(
&
outparam
->
name_hash
);
free_root
(
&
table
->
mem_root
,
MYF
(
0
));
free_root
(
&
table
->
mem_root
,
MYF
(
0
));
DBUG_RETURN
(
error
);
DBUG_RETURN
(
error
);
}
}
...
...
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