From 67cb344b0d315a6e6a4375358dc7e3fd554ae44e Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Sat, 21 Jun 2008 13:22:58 +0000 Subject: [PATCH] - fixed major bug in the reply matching (UAC transactions). git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1027 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/sipctrl/hash_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/plug-in/sipctrl/hash_table.cpp b/core/plug-in/sipctrl/hash_table.cpp index 7389f678..7552f462 100644 --- a/core/plug-in/sipctrl/hash_table.cpp +++ b/core/plug-in/sipctrl/hash_table.cpp @@ -294,7 +294,7 @@ sip_trans* trans_bucket::match_reply(sip_msg* msg) if(get_cseq((*it)->msg)->method_str.len != get_cseq(msg)->method_str.len) continue; - if(memcmp(msg->via_p1->branch.s+MAGIC_BRANCH_LEN, + if(memcmp((*it)->msg->via_p1->branch.s+MAGIC_BRANCH_LEN, branch,len)) continue;