Skip to content

Commit

Permalink
Fixed compiler failure in lib_sql.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
montywi committed Sep 19, 2023
1 parent 821d691 commit 8a3a88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmysqld/lib_sql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8a3a88a

Please sign in to comment.