mirror of
https://github.com/MariaDB/server.git
synced 2025-01-26 00:34:18 +01:00
MDEV-35554 call to function show_binlog_space_total()
through pointer to incorrect function type. The argument is void* rather than char*. This shows up with UBSAN testing under clang.
This commit is contained in:
parent
bca4cc0bd6
commit
f014d5872b
1 changed files with 1 additions and 1 deletions
|
@ -7372,7 +7372,7 @@ static int show_max_memory_used(THD *thd, SHOW_VAR *var, void *buff,
|
|||
}
|
||||
|
||||
|
||||
static int show_binlog_space_total(THD *thd, SHOW_VAR *var, char *buff,
|
||||
static int show_binlog_space_total(THD *thd, SHOW_VAR *var, void *buff,
|
||||
struct system_status_var *status_var,
|
||||
enum enum_var_type scope)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue