output/jack: fix implicit nullptr/bool conversion
Return false on error, not nullptr.
This commit is contained in:
parent
412bedb697
commit
2983c2a24f
@ -390,7 +390,7 @@ JackOutput::Configure(const config_param ¶m, Error &error)
|
||||
const char *value = param.GetBlockValue("source_ports", "left,right");
|
||||
num_source_ports = parse_port_list(value, source_ports, error);
|
||||
if (num_source_ports == 0)
|
||||
return nullptr;
|
||||
return false;
|
||||
|
||||
/* configure the destination ports */
|
||||
|
||||
@ -408,7 +408,7 @@ JackOutput::Configure(const config_param ¶m, Error &error)
|
||||
num_destination_ports =
|
||||
parse_port_list(value, destination_ports, error);
|
||||
if (num_destination_ports == 0)
|
||||
return nullptr;
|
||||
return false;
|
||||
} else {
|
||||
num_destination_ports = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user