--- a/src/libs/zbxdbhigh/trigger_linking.c 2022-05-03 08:50:02.000000000 +0200 +++ b/src/libs/zbxdbhigh/trigger_linking.c 2022-05-10 16:36:07.642018464 +0200 @@ -1082,8 +1082,8 @@ zbx_vector_uint64_append(&(found->itemids), itemid); zbx_vector_str_append(&(found->functionids), zbx_strdup(NULL, row[1])); zbx_vector_str_append(&(found->itemkeys), zbx_strdup(NULL, row[4])); - zbx_vector_str_append(&(found->names), DBdyn_escape_string(row[2])); - zbx_vector_str_append(&(found->parameters), DBdyn_escape_string(row[3])); + zbx_vector_str_append(&(found->names), zbx_strdup(NULL, row[2])); + zbx_vector_str_append(&(found->parameters), zbx_strdup(NULL, row[3])); } else { @@ -1098,8 +1098,8 @@ zbx_vector_uint64_append(&(local_temp_t.itemids), itemid); zbx_vector_str_append(&(local_temp_t.functionids), zbx_strdup(NULL, row[1])); zbx_vector_str_append(&(local_temp_t.itemkeys), zbx_strdup(NULL, row[4])); - zbx_vector_str_append(&(local_temp_t.names), DBdyn_escape_string(row[2])); - zbx_vector_str_append(&(local_temp_t.parameters), DBdyn_escape_string(row[3])); + zbx_vector_str_append(&(local_temp_t.names), zbx_strdup(NULL, row[2])); + zbx_vector_str_append(&(local_temp_t.parameters), zbx_strdup(NULL, row[3])); local_temp_t.triggerid = temp_t.triggerid;