--- googlecode.com/svn/trunk/Meteor/Connection.pm 2008/01/25 17:12:02 35 +++ googlecode.com/svn/trunk/Meteor/Connection.pm 2008/02/01 19:28:40 36 @@ -53,7 +53,7 @@ my $wVecRef=shift; my $eVecRef=shift; - map {$_->addHandleBits($rVecRef,$wVecRef,$eVecRef)} @Connections; + map {$_->addHandleBits($rVecRef,$wVecRef,$eVecRef) if(defined($_)) } @Connections; } sub checkAllHandleBits { @@ -63,7 +63,7 @@ my $wVec=shift; my $eVec=shift; - map {$_->checkHandleBits($rVec,$wVec,$eVec)} @Connections; + map {$_->checkHandleBits($rVec,$wVec,$eVec) if(defined($_)) } @Connections; } sub connectionCount {