mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '5.5' into 10.0
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/* Copyright (c) 2000, 2016, Oracle and/or its affiliates.
|
||||
Copyright (c) 2009, 2017, MariaDB
|
||||
/* Copyright (c) 2000, 2018, Oracle and/or its affiliates.
|
||||
Copyright (c) 2009, 2019, MariaDB Corporation
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@@ -3758,7 +3758,7 @@ int MYSQL_BIN_LOG::find_log_pos(LOG_INFO *linfo, const char *log_name,
|
||||
// if the log entry matches, null string matching anything
|
||||
if (!log_name ||
|
||||
(log_name_len == fname_len-1 && full_fname[log_name_len] == '\n' &&
|
||||
!memcmp(full_fname, full_log_name, log_name_len)))
|
||||
!strncmp(full_fname, full_log_name, log_name_len)))
|
||||
{
|
||||
DBUG_PRINT("info", ("Found log file entry"));
|
||||
full_fname[fname_len-1]= 0; // remove last \n
|
||||
|
Reference in New Issue
Block a user