Commit 2983c2a2 authored by Max Kellermann's avatar Max Kellermann

output/jack: fix implicit nullptr/bool conversion

Return false on error, not nullptr.
parent 412bedb6
...@@ -390,7 +390,7 @@ JackOutput::Configure(const config_param &param, Error &error) ...@@ -390,7 +390,7 @@ JackOutput::Configure(const config_param &param, Error &error)
const char *value = param.GetBlockValue("source_ports", "left,right"); const char *value = param.GetBlockValue("source_ports", "left,right");
num_source_ports = parse_port_list(value, source_ports, error); num_source_ports = parse_port_list(value, source_ports, error);
if (num_source_ports == 0) if (num_source_ports == 0)
return nullptr; return false;
/* configure the destination ports */ /* configure the destination ports */
...@@ -408,7 +408,7 @@ JackOutput::Configure(const config_param &param, Error &error) ...@@ -408,7 +408,7 @@ JackOutput::Configure(const config_param &param, Error &error)
num_destination_ports = num_destination_ports =
parse_port_list(value, destination_ports, error); parse_port_list(value, destination_ports, error);
if (num_destination_ports == 0) if (num_destination_ports == 0)
return nullptr; return false;
} else { } else {
num_destination_ports = 0; num_destination_ports = 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment