2
0
Эх сурвалжийг харах

tmx: backup and restore existing T and branch pointers for t_cancel_callid()

- reported and initial patch by Guillaume Bour

(cherry picked from commit 60372d613544af1f8f06122eb77fa2a9636a6c3a)
(cherry picked from commit f7ed69d75746dc55e5a48a7a18602124e73cd3cd)
Daniel-Constantin Mierla 11 жил өмнө
parent
commit
211348ae0f
1 өөрчлөгдсөн 5 нэмэгдсэн , 0 устгасан
  1. 5 0
      modules/tmx/tmx_mod.c

+ 5 - 0
modules/tmx/tmx_mod.c

@@ -331,6 +331,8 @@ static int fixup_cancel_callid(void** param, int param_no)
 static int t_cancel_callid(struct sip_msg* msg, char *cid, char *cseq, char *flag)
 {
 	struct cell *trans;
+	struct cell *bkt;
+	int bkb;
 	struct cancel_info cancel_data;
 	str cseq_s;
 	str callid_s;
@@ -356,6 +358,8 @@ static int t_cancel_callid(struct sip_msg* msg, char *cid, char *cseq, char *fla
 		return -1;
 	}
 
+	bkt = _tmx_tmb.t_gett();
+	bkb = _tmx_tmb.t_gett_branch();
 	if( _tmx_tmb.t_lookup_callid(&trans, callid_s, cseq_s) < 0 ) {
 		DBG("Lookup failed - no transaction\n");
 		return -1;
@@ -370,6 +374,7 @@ static int t_cancel_callid(struct sip_msg* msg, char *cid, char *cseq, char *fla
 	_tmx_tmb.cancel_uacs(trans, &cancel_data, 0);
 
 	//_tmx_tmb.unref_cell(trans);
+	_tmx_tmb.t_sett(bkt, bkb);
 
 	return 1;
 }