mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fix GCC 10 -Wstringop-truncation
This commit is contained in:
parent
2c8fa28f40
commit
a8566f727f
1 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
/* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
Copyright (c) 2020, MariaDB Corporation.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License, version 2.0,
|
||||
|
@ -619,6 +620,7 @@ static void init_instr_class(PFS_instr_class *klass,
|
|||
DBUG_ASSERT(name_length <= PFS_MAX_INFO_NAME_LENGTH);
|
||||
memset(klass, 0, sizeof(PFS_instr_class));
|
||||
strncpy(klass->m_name, name, name_length);
|
||||
klass->m_name[PFS_MAX_INFO_NAME_LENGTH - 1]= '\0';
|
||||
klass->m_name_length= name_length;
|
||||
klass->m_flags= flags;
|
||||
klass->m_enabled= true;
|
||||
|
|
Loading…
Reference in a new issue