summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorunknown <dlenev@mysql.com>2003-09-19 20:34:57 +0400
committerunknown <dlenev@mysql.com>2003-09-19 20:34:57 +0400
commitf89e03fd78db56bd938293c3d7e1cdc66db5d0bc (patch)
tree94d23272768b936ee38da1a580bec74cfa61975d /client
parenteac3b0682ad4a2b58ebe9eeb799629cd1481e03f (diff)
parent2a036dfa14bea2a10710b20491d1953397ca9e04 (diff)
downloadmariadb-git-f89e03fd78db56bd938293c3d7e1cdc66db5d0bc.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into mysql.com:/home/dlenev/src/mysql-4.0-bg-1340 client/mysqlbinlog.cc: Auto merged
Diffstat (limited to 'client')
-rw-r--r--client/mysqlbinlog.cc17
1 files changed, 10 insertions, 7 deletions
diff --git a/client/mysqlbinlog.cc b/client/mysqlbinlog.cc
index e301d40b5b8..43872dd718a 100644
--- a/client/mysqlbinlog.cc
+++ b/client/mysqlbinlog.cc
@@ -185,6 +185,8 @@ public:
}
Create_file_log_event *grab_event(uint file_id)
{
+ if (file_id >= file_names.elements)
+ return 0;
Create_file_log_event **ptr=
(Create_file_log_event**)file_names.buffer + file_id;
Create_file_log_event *res= *ptr;
@@ -198,8 +200,14 @@ public:
}
void process(Append_block_log_event *ae)
{
- if (ae->file_id >= file_names.elements)
- {
+ Create_file_log_event* ce= 0;
+
+ if (ae->file_id < file_names.elements)
+ ce= *((Create_file_log_event**)file_names.buffer + ae->file_id);
+
+ if (ce)
+ append_to_file(ce->fname,O_APPEND|O_BINARY|O_WRONLY,ae->block,ae->block_len);
+ else
/*
There is no Create_file event (a bad binlog or a big
--position). Assuming it's a big --position, we just do nothing and
@@ -207,11 +215,6 @@ public:
*/
fprintf(stderr,"Warning: ignoring Append_block as there is no \
Create_file event for file_id: %u\n",ae->file_id);
- return;
- }
- Create_file_log_event* ce=
- *((Create_file_log_event**)file_names.buffer + ae->file_id);
- append_to_file(ce->fname,O_APPEND|O_BINARY|O_WRONLY,ae->block,ae->block_len);
}
};