Skip to content
Snippets Groups Projects
Commit 6e65bea2 authored by Russell Bryant's avatar Russell Bryant
Browse files

Fix a seg fault on a registration. Line 7706, in parse_register_contact,

explicitly passes NULL as the "pass" argument to this function.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46055 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent a989f7cd
No related branches found
No related tags found
No related merge requests found
...@@ -2254,9 +2254,9 @@ static int parse_uri(char *uri, char *scheme, ...@@ -2254,9 +2254,9 @@ static int parse_uri(char *uri, char *scheme,
int error = 0; int error = 0;
   
/* init field as required */ /* init field as required */
if (*pass) if (pass && *pass)
*pass = ""; *pass = "";
if (*port) if (port && *port)
*port = ""; *port = "";
name = strsep(&uri, ";"); /* remove options */ name = strsep(&uri, ";"); /* remove options */
if (scheme) { if (scheme) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment