mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2026-01-27 17:17:17 +01:00
Fix parameter list sequence
This commit is contained in:
parent
fc34f19ec5
commit
ffba17fe09
1 changed files with 1 additions and 1 deletions
|
|
@ -1110,7 +1110,7 @@ int xml_data_list_to_dm_parameter_list(struct list_head *xml_data_list, struct l
|
|||
|
||||
struct cwmp_dm_parameter *dm_parameter;
|
||||
dm_parameter = calloc(1, sizeof(struct cwmp_dm_parameter));
|
||||
list_add_tail(&dm_parameter->list, dm_parameter_list);
|
||||
list_add(&dm_parameter->list, dm_parameter_list);
|
||||
dm_parameter->name = strdup(xml_data->param_name ? xml_data->param_name : "");
|
||||
dm_parameter->value = strdup(xml_data->param_value ? xml_data->param_value : "");
|
||||
dm_parameter->type = strdup(xml_data->param_type ? xml_data->param_type : "");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue