1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fixed compiler failure in lib_sql.cc

This commit is contained in:
Monty
2023-09-19 15:01:28 +03:00
parent 821d691a20
commit 8a3a88a758

View File

@@ -1043,7 +1043,7 @@ class Client_field_extension: public Sql_alloc,
public:
Client_field_extension()
{
memset(this, 0, sizeof(*this));
memset((void*) this, 0, sizeof(*this));
}
void copy_extended_metadata(MEM_ROOT *memroot,
const Send_field_extended_metadata &src)