13
0

clear port-list before query.

fixes crash in PortManager::silence_outputs()
This commit is contained in:
Robin Gareus 2015-05-04 02:06:59 +02:00
parent 9ec3085d71
commit 59067d3568

View File

@ -261,6 +261,8 @@ PortManager::get_ports (DataType type, PortList& pl)
int
PortManager::get_ports (const string& port_name_pattern, DataType type, PortFlags flags, vector<string>& s)
{
s.clear();
if (!_backend) {
return 0;
}