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
0e2cc47c
Commit
0e2cc47c
authored
Mar 08, 2010
by
Luis Soares
Browse files
Options
Browse Files
Download
Plain Diff
Automerge: BUG 48993 bundle from bug report --> mysql-5.1-bugteam.
parents
75ac6234
fbf595d0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
4 deletions
+33
-4
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+8
-3
mysql-test/t/mysqlbinlog.test
mysql-test/t/mysqlbinlog.test
+24
-0
sql/log_event.cc
sql/log_event.cc
+1
-1
No files found.
client/mysqlbinlog.cc
View file @
0e2cc47c
...
...
@@ -832,7 +832,11 @@ Exit_status process_event(PRINT_EVENT_INFO *print_event_info, Log_event *ev,
print_event_info
->
common_header_len
=
glob_description_event
->
common_header_len
;
ev
->
print
(
result_file
,
print_event_info
);
ev
->
temp_buf
=
0
;
// as the event ref is zeroed
if
(
!
remote_opt
)
ev
->
free_temp_buf
();
// free memory allocated in dump_local_log_entries
else
// disassociate but not free dump_remote_log_entries time memory
ev
->
temp_buf
=
0
;
/*
We don't want this event to be deleted now, so let's hide it (I
(Guilhem) should later see if this triggers a non-serious Valgrind
...
...
@@ -1362,7 +1366,6 @@ static int parse_args(int *argc, char*** argv)
int
ho_error
;
result_file
=
stdout
;
load_defaults
(
"my"
,
load_default_groups
,
argc
,
argv
);
if
((
ho_error
=
handle_options
(
argc
,
argv
,
my_long_options
,
get_one_option
)))
exit
(
ho_error
);
if
(
debug_info_flag
)
...
...
@@ -2019,8 +2022,10 @@ int main(int argc, char** argv)
my_init_time
();
// for time functions
if
(
load_defaults
(
"my"
,
load_default_groups
,
&
argc
,
&
argv
))
exit
(
1
);
defaults_argv
=
argv
;
parse_args
(
&
argc
,
(
char
***
)
&
argv
);
defaults_argv
=
argv
;
if
(
!
argc
)
{
...
...
mysql-test/t/mysqlbinlog.test
View file @
0e2cc47c
...
...
@@ -443,3 +443,27 @@ FLUSH LOGS;
--
echo
End
of
5.0
tests
--
echo
End
of
5.1
tests
#
# BUG#38468 Memory leak detected when using mysqlbinlog utility;
#
disable_query_log
;
RESET
MASTER
;
CREATE
TABLE
t1
SELECT
1
;
FLUSH
LOGS
;
DROP
TABLE
t1
;
enable_query_log
;
# Write an empty file for comparison
write_file
$MYSQLTEST_VARDIR
/
tmp
/
mysqlbinlog
.
warn
.
empty
;
EOF
# Before fix of BUG#38468, this would generate some warnings
--
exec
$MYSQL_BINLOG
$MYSQLD_DATADIR
/
master
-
bin
.
000001
>/
dev
/
null
2
>
$MYSQLTEST_VARDIR
/
tmp
/
mysqlbinlog
.
warn
# Make sure the command above does not generate any error or warnings
diff_files
$MYSQLTEST_VARDIR
/
tmp
/
mysqlbinlog
.
warn
$MYSQLTEST_VARDIR
/
tmp
/
mysqlbinlog
.
warn
.
empty
;
# Cleanup for this part of test
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
mysqlbinlog
.
warn
.
empty
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
mysqlbinlog
.
warn
;
sql/log_event.cc
View file @
0e2cc47c
...
...
@@ -9478,7 +9478,7 @@ Incident_log_event::write_data_body(IO_CACHE *file)
they will always be printed for the first event.
*/
st_print_event_info
::
st_print_event_info
()
:
flags2_inited
(
0
),
sql_mode_inited
(
0
),
:
flags2_inited
(
0
),
sql_mode_inited
(
0
),
sql_mode
(
0
),
auto_increment_increment
(
0
),
auto_increment_offset
(
0
),
charset_inited
(
0
),
lc_time_names_number
(
~
0
),
charset_database_number
(
ILLEGAL_CHARSET_INFO_NUMBER
),
...
...
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