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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
24b0fab9
Commit
24b0fab9
authored
Nov 08, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/bkroot/mysql-4.1
into mysql.com:/home/bk/b6239-4.1-v2-pending
parents
70663052
1186229f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
4 deletions
+19
-4
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+19
-4
No files found.
client/mysqlbinlog.cc
View file @
24b0fab9
...
...
@@ -204,7 +204,7 @@ int Load_log_processor::load_old_format_file(NET* net, const char*server_fname,
for
(;;)
{
u
int
packet_len
=
my_net_read
(
net
);
u
long
packet_len
=
my_net_read
(
net
);
if
(
packet_len
==
0
)
{
if
(
my_net_write
(
net
,
""
,
0
)
||
net_flush
(
net
))
...
...
@@ -226,7 +226,13 @@ int Load_log_processor::load_old_format_file(NET* net, const char*server_fname,
return
-
1
;
}
if
(
my_write
(
file
,
(
byte
*
)
net
->
read_pos
,
packet_len
,
MYF
(
MY_WME
|
MY_NABP
)))
if
(
packet_len
>
UINT_MAX
)
{
sql_print_error
(
"Illegal length of packet read from net"
);
return
-
1
;
}
if
(
my_write
(
file
,
(
byte
*
)
net
->
read_pos
,
(
uint
)
packet_len
,
MYF
(
MY_WME
|
MY_NABP
)))
return
-
1
;
}
...
...
@@ -747,7 +753,8 @@ static int dump_remote_log_entries(const char* logname)
{
char
buf
[
128
];
char
last_db
[
FN_REFLEN
+
1
]
=
""
;
uint
len
,
logname_len
;
ulong
len
;
uint
logname_len
;
NET
*
net
;
int
old_format
;
int
error
=
0
;
...
...
@@ -770,7 +777,15 @@ static int dump_remote_log_entries(const char* logname)
*/
int4store
(
buf
,
(
uint32
)
start_position
);
int2store
(
buf
+
BIN_LOG_HEADER_SIZE
,
binlog_flags
);
logname_len
=
(
uint
)
strlen
(
logname
);
size_s
tlen
=
strlen
(
logname
);
if
(
tlen
>
UINT_MAX
)
{
fprintf
(
stderr
,
"Log name too long
\n
"
);
error
=
1
;
goto
err
;
}
logname_len
=
(
uint
)
tlen
;
int4store
(
buf
+
6
,
0
);
memcpy
(
buf
+
10
,
logname
,
logname_len
);
if
(
simple_command
(
mysql
,
COM_BINLOG_DUMP
,
buf
,
logname_len
+
10
,
1
))
...
...
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