summaryrefslogtreecommitdiff
path: root/databases/xtrabackup80/files/patch-sql_binlog__ostream.cc
diff options
context:
space:
mode:
authorEugene Grosbein <eugen@FreeBSD.org>2025-07-02 15:13:41 +0700
committerEugene Grosbein <eugen@FreeBSD.org>2025-07-02 15:40:25 +0700
commit47f39553742ab470850e8b16c8c0de2f3a4030e2 (patch)
tree81239b619e9447ea542382adcd0ded19da02898e /databases/xtrabackup80/files/patch-sql_binlog__ostream.cc
parentx11-drivers/xorgxrdp: rebuild against xrdp 0.10.4 (diff)
databases/xtrabackup80: fix build with llvm-19
PORTREVISION not bumped as this fixes build. PR: 287958 Reported by: Eugene M. Zheganin (maintainer) Tested by: Eugene M. Zheganin (maintainer)
Diffstat (limited to 'databases/xtrabackup80/files/patch-sql_binlog__ostream.cc')
-rw-r--r--databases/xtrabackup80/files/patch-sql_binlog__ostream.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/xtrabackup80/files/patch-sql_binlog__ostream.cc b/databases/xtrabackup80/files/patch-sql_binlog__ostream.cc
new file mode 100644
index 000000000000..870b55e23bf3
--- /dev/null
+++ b/databases/xtrabackup80/files/patch-sql_binlog__ostream.cc
@@ -0,0 +1,11 @@
+--- sql/binlog_ostream.cc.orig 2023-11-24 10:33:10 UTC
++++ sql/binlog_ostream.cc
+@@ -239,7 +239,7 @@ bool IO_CACHE_binlog_cache_storage::setup_ciphers_pass
+
+ /* Generate password, it is a random string. */
+ if (my_rand_buffer(password, sizeof(password))) return true;
+- password_str.append(password, sizeof(password));
++ password_str.insert(password_str.end(), password, password + sizeof(password));
+
+ m_io_cache.m_encryptor->close();
+ m_io_cache.m_decryptor->close();