Module: kamailio
Branch: 5.0
Commit: 6d58c71aa9c5e0a4571a5f12db724b753b035ece
URL:
https://github.com/kamailio/kamailio/commit/6d58c71aa9c5e0a4571a5f12db724b7…
Author: grumvalski <federico.cabiddu(a)gmail.com>
Committer: Federico Cabiddu <federico.cabiddu(a)gmail.com>
Date: 2017-12-06T17:27:05+01:00
tm: make t_run_local_req reentrant
- avoid crash when local-request event route is triggered inside another one
(cherry picked from commit 97b15611ad87e36dd17ba76a77cb8817d974806b)
---
Modified: src/modules/tm/uac.c
---
Diff:
https://github.com/kamailio/kamailio/commit/6d58c71aa9c5e0a4571a5f12db724b7…
Patch:
https://github.com/kamailio/kamailio/commit/6d58c71aa9c5e0a4571a5f12db724b7…
---
diff --git a/src/modules/tm/uac.c b/src/modules/tm/uac.c
index 5352e25399..e73af4eb03 100644
--- a/src/modules/tm/uac.c
+++ b/src/modules/tm/uac.c
@@ -221,7 +221,7 @@ static inline int t_run_local_req(
uac_req_t *uac_r,
struct cell *new_cell, struct retr_buf *request)
{
- static struct sip_msg lreq;
+ struct sip_msg lreq = {0};
struct onsend_info onsnd_info;
tm_xlinks_t backup_xd;
int sflag_bk;