diff options
Diffstat (limited to 'lib/Vyatta/Qos/ShaperClass.pm')
-rw-r--r-- | lib/Vyatta/Qos/ShaperClass.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/ShaperClass.pm b/lib/Vyatta/Qos/ShaperClass.pm index 1cb7fbe..4d3cf33 100644 --- a/lib/Vyatta/Qos/ShaperClass.pm +++ b/lib/Vyatta/Qos/ShaperClass.pm @@ -68,7 +68,10 @@ sub _getMatch { foreach my $match ( $config->listNodes($level) ) { $config->setLevel("$level $match"); - push @matches, new Vyatta::Qos::Match($config); + my $match = new Vyatta::Qos::Match($config); + if (defined($match)) { + push @matches, $match; + } } return @matches; } |