Explorar o código

tm: crash on memcpy fix

- in some cases tag is not initialized and lead to crash.
  Memory pointer check before writing to added.
Roman Romanchenko %!s(int64=7) %!d(string=hai) anos
pai
achega
db3b9dbd48
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/modules/tm/t_reply.c

+ 1 - 0
src/modules/tm/t_reply.c

@@ -299,6 +299,7 @@ inline static int update_totag_set(struct cell *t, struct sip_msg *ok)
 
 	for (i=t->fwded_totags; i; i=i->next) {
 		if (i->tag.len==tag->len
+				&& i->tag.s
 				&& memcmp(i->tag.s, tag->s, tag->len) ==0 ){
 			/* to tag already recorded */
 			LM_DBG("to-tag retransmission\n");