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
a3fe485d
Commit
a3fe485d
authored
Feb 12, 2008
by
mkindahl@dl145h.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various fixes to fix memory leaks after merging replication
tree with main.
parent
e91c287e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
sql/sql_binlog.cc
sql/sql_binlog.cc
+1
-0
sql/sql_class.cc
sql/sql_class.cc
+3
-0
No files found.
sql/sql_binlog.cc
View file @
a3fe485d
...
...
@@ -234,6 +234,7 @@ void mysql_client_binlog_statement(THD* thd)
send_ok
(
thd
);
end:
thd
->
rli_fake
->
clear_tables_to_lock
();
my_free
(
buf
,
MYF
(
MY_ALLOW_ZERO_PTR
));
DBUG_VOID_RETURN
;
}
sql/sql_class.cc
View file @
a3fe485d
...
...
@@ -870,7 +870,10 @@ THD::~THD()
#endif
#ifndef EMBEDDED_LIBRARY
if
(
rli_fake
)
{
delete
rli_fake
;
rli_fake
=
NULL
;
}
#endif
free_root
(
&
main_mem_root
,
MYF
(
0
));
...
...
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