correct fix for the bug i previously introduced - the strings

are meant to be always initialized, independently from their content.



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46104 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Luigi Rizzo 19 years ago
parent 61056be5ab
commit 0d59b76dd2

@ -2254,9 +2254,9 @@ static int parse_uri(char *uri, char *scheme,
int error = 0;
/* init field as required */
if (pass && *pass)
if (pass)
*pass = "";
if (port && *port)
if (port)
*port = "";
name = strsep(&uri, ";"); /* remove options */
if (scheme) {

Loading…
Cancel
Save