Module: kamailio Branch: master Commit: 5484b7a2bf662d3bced662d11a04e1f25f965023 URL: https://github.com/kamailio/kamailio/commit/5484b7a2bf662d3bced662d11a04e1f2...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2021-09-28T11:27:50Z
topos: reset vavu variable, otherwise we will get errors in contact_mode 2 (GH #2852)
---
Modified: src/modules/topos/tps_storage.c
---
Diff: https://github.com/kamailio/kamailio/commit/5484b7a2bf662d3bced662d11a04e1f2... Patch: https://github.com/kamailio/kamailio/commit/5484b7a2bf662d3bced662d11a04e1f2...
---
diff --git a/src/modules/topos/tps_storage.c b/src/modules/topos/tps_storage.c index b94a960340..1a67c0252c 100644 --- a/src/modules/topos/tps_storage.c +++ b/src/modules/topos/tps_storage.c @@ -352,7 +352,8 @@ int tps_storage_fill_contact(sip_msg_t *msg, tps_data_t *td, str *uuid, int dir, td->cp++; }
- /* contact_host xavu takes preference */ + /* contact_host xavu takes preference, reset vavu */ + vavu = NULL; if (_tps_xavu_cfg.len>0 && _tps_xavu_field_contact_host.len>0) { vavu = xavu_get_child_with_sval(&_tps_xavu_cfg, &_tps_xavu_field_contact_host);