mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 16:50:14 +00:00
chan_sip: Don't ignore expires value in contact header if it lacks semicolon
(closes issue ASTERISK-22574)
Reported by: Filip Jenicek
Patches:
chan_sip_expires.patch uploaded by Filip Jenicek (license 6277)
........
Merged revisions 400469 from http://svn.asterisk.org/svn/asterisk/branches/1.8
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@400470 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -23418,9 +23418,10 @@ static int handle_response_register(struct sip_pvt *p, int resp, const char *res
|
|||||||
}
|
}
|
||||||
tmptmp = strcasestr(contact, "expires=");
|
tmptmp = strcasestr(contact, "expires=");
|
||||||
if (tmptmp) {
|
if (tmptmp) {
|
||||||
if (sscanf(tmptmp + 8, "%30d;", &expires) != 1)
|
if (sscanf(tmptmp + 8, "%30d", &expires) != 1) {
|
||||||
expires = 0;
|
expires = 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if (!expires)
|
if (!expires)
|
||||||
|
|||||||
Reference in New Issue
Block a user