@@ -357,7 +357,7 @@ static int _reply_light( struct cell *trans, char* buf, unsigned int len,
357357 /* determine if there are some branches to be canceled */
358358 if ( is_invite (trans ) ) {
359359 if (lock ) LOCK_REPLIES ( trans );
360- which_cancel (trans , & cancel_bitmap );
360+ which_cancel (trans , cancel_bitmap );
361361 if (lock ) UNLOCK_REPLIES ( trans );
362362 }
363363 /* and clean-up, including cancellations, if needed */
@@ -371,7 +371,7 @@ static int _reply_light( struct cell *trans, char* buf, unsigned int len,
371371 goto error2 ;
372372 }
373373 if ( is_invite (trans ) && code >=200 )
374- which_cancel (trans , & cancel_bitmap );
374+ which_cancel (trans , cancel_bitmap );
375375
376376
377377 rb = & trans -> uas .response ;
@@ -883,7 +883,7 @@ static inline int tran_is_completed( struct cell *t )
883883 */
884884static enum rps t_should_relay_response ( struct cell * Trans , int new_code ,
885885 int branch , int * should_store , int * should_relay ,
886- branch_bm_t * cancel_bitmap , struct sip_msg * reply )
886+ branch_bm_t cancel_bitmap , struct sip_msg * reply )
887887{
888888 int branch_cnt ;
889889 int picked_code ;
@@ -998,7 +998,7 @@ static enum rps t_should_relay_response( struct cell *Trans , int new_code,
998998 }
999999 if (do_cancel ) {
10001000 branch_bm_t cb = BRANCH_BM_ZERO ;
1001- which_cancel ( Trans , & cb );
1001+ which_cancel ( Trans , cb );
10021002 cleanup_uac_timers (Trans );
10031003 cancel_uacs ( Trans , cb );
10041004 }
@@ -1242,7 +1242,7 @@ static int store_reply( struct cell *trans, int branch, struct sip_msg *rpl)
12421242 REPLY_LOCK and it returns unlocked!
12431243*/
12441244enum rps relay_reply ( struct cell * t , struct sip_msg * p_msg , int branch ,
1245- unsigned int msg_status , branch_bm_t * cancel_bitmap )
1245+ unsigned int msg_status , branch_bm_t cancel_bitmap )
12461246{
12471247 int relay ;
12481248 int save_clone ;
@@ -1275,7 +1275,7 @@ enum rps relay_reply( struct cell *t, struct sip_msg *p_msg, int branch,
12751275 & save_clone , & relay , cancel_bitmap , p_msg );
12761276 LM_DBG ("T_state=%d, branch=%d, save=%d, relay=%d, "
12771277 "cancel_BM=" BRANCH_BM_SPECS "\n" , reply_status , branch ,
1278- save_clone , relay , BRANCH_BM_ARGS (* cancel_bitmap ));
1278+ save_clone , relay , BRANCH_BM_ARGS (cancel_bitmap ));
12791279
12801280 /* store the message if needed */
12811281 if (save_clone ) /* save for later use, typically branch picking */
@@ -1442,7 +1442,7 @@ enum rps relay_reply( struct cell *t, struct sip_msg *p_msg, int branch,
14421442 text .len = sizeof ("Reply processing error" )- 1 ;
14431443 t_reply_unsafe ( t , t -> uas .request , 500 , & text );
14441444 UNLOCK_REPLIES (t );
1445- if (is_invite (t )) cancel_uacs ( t , * cancel_bitmap );
1445+ if (is_invite (t )) cancel_uacs ( t , cancel_bitmap );
14461446 /* a serious error occurred -- attempt to send an error reply;
14471447 it will take care of clean-ups */
14481448
@@ -1455,7 +1455,7 @@ enum rps relay_reply( struct cell *t, struct sip_msg *p_msg, int branch,
14551455 it is entered locked with REPLY_LOCK and it returns unlocked!
14561456*/
14571457enum rps local_reply ( struct cell * t , struct sip_msg * p_msg , int branch ,
1458- unsigned int msg_status , branch_bm_t * cancel_bitmap )
1458+ unsigned int msg_status , branch_bm_t cancel_bitmap )
14591459{
14601460 /* how to deal with replies for local transaction */
14611461 int local_store , local_winner ;
@@ -1523,7 +1523,7 @@ enum rps local_reply( struct cell *t, struct sip_msg *p_msg, int branch,
15231523 UNLOCK_REPLIES (t );
15241524 cleanup_uac_timers (t );
15251525 if ( get_cseq (p_msg )-> method_id == METHOD_INVITE )
1526- cancel_uacs ( t , * cancel_bitmap );
1526+ cancel_uacs ( t , cancel_bitmap );
15271527 put_on_wait (t );
15281528 return RPS_ERROR ;
15291529}
@@ -1548,7 +1548,7 @@ void process_reply_and_timer(struct cell *t,int branch,int msg_status,
15481548 }
15491549
15501550 if (is_local (t )) {
1551- reply_status = local_reply (t ,p_msg , branch ,msg_status ,& cancel_bitmap );
1551+ reply_status = local_reply (t ,p_msg , branch ,msg_status , cancel_bitmap );
15521552 if (reply_status == RPS_COMPLETED ) {
15531553 cleanup_uac_timers (t );
15541554 if (is_invite (t )) cancel_uacs (t , cancel_bitmap );
@@ -1557,7 +1557,7 @@ void process_reply_and_timer(struct cell *t,int branch,int msg_status,
15571557 put_on_wait (t );
15581558 }
15591559 } else {
1560- reply_status = relay_reply (t ,p_msg ,branch ,msg_status ,& cancel_bitmap );
1560+ reply_status = relay_reply (t ,p_msg ,branch ,msg_status , cancel_bitmap );
15611561 /* clean-up the transaction when transaction completed */
15621562 if (reply_status == RPS_COMPLETED ) {
15631563 /* no more UAC FR/RETR (if I received a 2xx, there may
0 commit comments