1 Commits

Author SHA1 Message Date
liuxueli
fdeb3ee864 修复: TSG-7045, TSG-7032; record_name空间较小,存在写越界导致重启 2021-07-14 09:39:32 +08:00

View File

@@ -32,8 +32,8 @@ struct dns_records
int record_num;
int is_valid;
int table_id;
char record_type[128];
char record_name[MAX_TABLE_NAME_LEN];
char record_type[129];
char record_name[129];
void **record_values;
};