Files
ports/databases/xtrabackup80/files/patch-sql_binlog__ostream.cc
T
Eugene Grosbein 47f3955374 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)
2025-07-02 15:40:25 +07:00

12 lines
482 B
C++

--- 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();