mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
compatibility fix (bug#3606)
This commit is contained in:
parent
c5daed7c89
commit
b36398fe0d
1 changed files with 1 additions and 1 deletions
|
@ -3531,7 +3531,7 @@ static int queue_old_event(MASTER_INFO *mi, const char *buf,
|
|||
*/
|
||||
tmp_buf[event_len++]=0;
|
||||
buf = (const char*)tmp_buf;
|
||||
int4store(buf+EVENT_LEN_OFFSET, event_len);
|
||||
int4store(tmp_buf+EVENT_LEN_OFFSET, event_len);
|
||||
}
|
||||
/*
|
||||
This will transform LOAD_EVENT into CREATE_FILE_EVENT, ask the master to
|
||||
|
|
Loading…
Reference in a new issue