Archived
14
0
Fork 0

Merged revisions 80390 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r80390 | russell | 2007-08-22 16:00:44 -0500 (Wed, 22 Aug 2007) | 3 lines

Don't crash when using realtime in chan_sip without an insecure setting in the database.
(closes issue #10348, reported by link55, fixed by me)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@80391 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2007-08-22 21:03:27 +00:00
parent 4a6f77fa79
commit 1a733d34e5

View file

@ -16841,6 +16841,9 @@ static struct ast_channel *sip_request_call(const char *type, int format, void *
static void set_insecure_flags (struct ast_flags *flags, const char *value, int lineno)
{
if (ast_strlen_zero(value))
return;
if (!ast_false(value)) {
char buf[64];
char *word, *next;