We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d184e commit 4840331Copy full SHA for 4840331
src/cfgfile.c
@@ -1612,7 +1612,8 @@ static void _parse_master(xmlDocPtr doc,
1612
master->on_demand = configuration->on_demand;
1613
master->server = (char *) xmlCharStrdup("127.0.0.1");
1614
master->username = (char *) xmlCharStrdup(configuration->master_username);
1615
- master->password = (char *) xmlCharStrdup(configuration->master_password);
+ if (configuration->master_password)
1616
+ master->password = (char *) xmlCharStrdup(configuration->master_password);
1617
1618
do {
1619
if (node == NULL)
0 commit comments