[sr-dev] git:master:a263f5b6: topos_redis: fix regression in PRACK routing (commit cfc89db53c087, GH #1784)
Henning Westerholt
hw at skalatan.de
Thu Aug 15 16:30:09 CEST 2019
Module: kamailio
Branch: master
Commit: a263f5b62c03851a5d8a61f09e69745f90370703
URL: https://github.com/kamailio/kamailio/commit/a263f5b62c03851a5d8a61f09e69745f90370703
Author: Henning Westerholt <hw at skalatan.de>
Committer: Henning Westerholt <hw at skalatan.de>
Date: 2019-08-15T16:25:57+02:00
topos_redis: fix regression in PRACK routing (commit cfc89db53c087, GH #1784)
- fix regression in PRACK routing (introduced in cfc89db53c, GH #1784)
- result set were set to 0 before usage by a memset
---
Modified: src/modules/topos_redis/topos_redis_storage.c
---
Diff: https://github.com/kamailio/kamailio/commit/a263f5b62c03851a5d8a61f09e69745f90370703.diff
Patch: https://github.com/kamailio/kamailio/commit/a263f5b62c03851a5d8a61f09e69745f90370703.patch
---
diff --git a/src/modules/topos_redis/topos_redis_storage.c b/src/modules/topos_redis/topos_redis_storage.c
index 3cc24ef558..fe366403c8 100644
--- a/src/modules/topos_redis/topos_redis_storage.c
+++ b/src/modules/topos_redis/topos_redis_storage.c
@@ -727,6 +727,7 @@ int tps_redis_load_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd,
memset(argv, 0, TPS_REDIS_NR_KEYS * sizeof(char*));
memset(argvlen, 0, TPS_REDIS_NR_KEYS * sizeof(size_t));
argc = 0;
+ memset(&id, 0, sizeof(tps_data_t));
if(mode==0) {
/* load same transaction using Via branch */
@@ -737,7 +738,6 @@ int tps_redis_load_branch(sip_msg_t *msg, tps_data_t *md, tps_data_t *sd,
LM_ERR("failed to load the INVITE branch value\n");
return -1;
}
- memset(&id, 0, sizeof(tps_data_t));
xvbranch1 = &id.x_vbranch1;
}
if(xvbranch1->len<=0 || xvbranch1->s==NULL) {
More information about the sr-dev
mailing list